/* fonts==================================== */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --primary-font: "poppinsregular";
  --light-font: "poppinsblack";
  --black-color: #000;
  --white-color: #fff;
  --heading-font: "boutique_sansl_light";
  --default-font: "edwardian_script_itcregular";
  --light-pink: #fad6a5;
  --brown-color: #ffd700;
  --pink: #b87333;
  --sand: #c2b280;
  --nude: #f6a58a;
}

@font-face {
  font-family: "poppinsblack";
  src:
    url("../font/poppins-black-webfont.woff2") format("woff2"),
    url("../font/poppins-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "poppinsmedium";
  src:
    url("../font/poppins-medium-webfont.woff2") format("woff2"),
    url("../font/poppins-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "poppinsregular";
  src:
    url("../font/poppins-regular-webfont.woff2") format("woff2"),
    url("../font/poppins-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "boutique_sansl_light";
  src:
    url("../font/boutiquesans-llight-webfont.woff2") format("woff2"),
    url("../font/boutiquesans-llight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "edwardian_script_itcregular";
  src:
    url("../font/itcedscr-webfont.woff2") format("woff2"),
    url("../font/itcedscr-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fallbreeze";
  src:
    url("../font/fallbreeze/Fallbreeze.woff2") format("woff2"),
    url("../font/fallbreeze/Fallbreeze.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fallbreeze";
  src:
    url("../font/fallbreeze/Fallbreeze.woff2") format("woff2"),
    url("../font/fallbreeze/Fallbreeze.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bandung Signature Alt";
  src: url("../font/Bandung Signature Alt W05 Alt.eot");
  src:
    url("../font/Bandung Signature Alt W05 Alt.eot?#iefix") format("embedded-opentype"),
    url("../font/Bandung Signature Alt W05 Alt.woff2") format("woff2"),
    url("../font/Bandung Signature Alt W05 Alt.woff") format("woff"),
    url("../font/Bandung Signature Alt W05 Alt.svg#Bandung Signature Alt W05 Alt") format("svg");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
}

body {
  margin: 0;
  font-family: var(--primary-font);
}

::-webkit-scrollbar {
  width: 10px;
  background-color: var(--nude);
}

::-webkit-scrollbar-thumb {
  background-color: var(--nude);
  border-radius: 10px;
  height: 80px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--white-color);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--black-color);
}

h2 {
  font-family: var(--heading-font);
  font-size: 100px;
  color: var(--black-color);
  font-weight: 600;
}

p {
  font-size: 22px;
  margin: 0;
  font-family: var(--heading-font);
}

h3 {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 600;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.stellarnav ul li {
  text-align: end;
}

.bride-buttonone {
  background-color: var(--black-color);
  border-radius: 10px;
  color: var(--white-color);
  padding: 12px 34px;
  transition: 0.5s all ease;
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  width: auto;
  height: 58px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
}

.bride-buttonone:hover {
  background-color: var(--white-color);
  color: var(--black-color);
  font-weight: 400;
}

.bride-buttontwo {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 13px 52px;
  transition: 0.5s all ease;
  font-weight: 400;
  font-size: 20px;
  border-radius: 10px;
  display: inline-block;
  width: auto;
  height: 58px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
}

.bride-buttontwo:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

/* header */
.header-part .home-icon {
  display: flex;
  justify-content: end;
  width: 25%;
}

.home-icon-img {
  padding-top: 1rem;
  margin-right: -26px;
  display: flex;
  position: relative;
}

.stellarnav.mobile.right>ul {
  background: var(--white-color);
  box-shadow: 0 0 10px #504d4dc9;
}

.header-part .stellarnav.mobile li a {
  font-size: 21px;
  color: var(--black-color);
  transition: all 0.3s;
}

.header-part .stellarnav.mobile li a:hover {
  color: var(--pink);
}

.stellarnav.mobile>ul>li>a {
  padding: 12px;
}

.ph a i:hover {
  color: var(--pink);
}

.stellarnav a.dd-toggle .icon-plus:after,
.stellarnav a.dd-toggle .icon-plus:before {
  border-bottom: solid 3px var(--black-color);
}

.stellarnav .menu-toggle span.bars span {
  background: var(--black-color);
}

.stellarnav .menu-toggle span.bars span {
  width: 24px !important;
  height: 4px !important;
}

.stellarnav .icon-close:after,
.stellarnav .icon-close:before {
  width: 17px !important;
  border-bottom: solid 3px var(--black-color);
}

.side-nav-sub-menu {
  background: var(--white-color) !important;
  box-shadow: 0 0 10px #504d4dc9;
}

.side-nav-sub-menu li a {
  margin-left: 11px;
}

.stellarnav.mobile.left>ul,
.stellarnav.mobile.right>ul {
  max-width: 415px !important;
}

.header-part .navbar-light .navbar-nav .nav-link:hover {
  background-color: #000;
  color: var(--white-color);
  font-size: 19px;
  padding: 10px 11px;
}

.header-part {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 0 4px 0px #000000c9;
}

.logo h5 a {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 43px;
}

.logo h5 a:hover {
  color: var(--black-color);
}

.home-icon .navbar {
  display: inline-block;
}

.top-header .logo {
  text-align: center;
  padding-top: 10px;
  width: 50%;
}

.logo {
  text-align: center;
  padding-top: 10px;
}

.home-icon {
  padding-top: 10px;
}

.home-date {
  text-align: center;
  padding: 4px 7px;
  background-color: #f4f4f4;
}

.home-date p {
  font-family: var(--heading-font);
}

.home-icon-img a {
  margin-right: 23px;
  font-size: 20px;
  margin-left: 1px;
}

.home-icon .navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: transparent;
}

/* 
.home-icon a {
    padding-left: 31px;
} */

/* banner */
.banner-part {
  position: relative;
}

.banner-part .video-part::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 99%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  bottom: 5px;
  right: 0;
}

.banner-part .banner-text {
  color: var(--white-color);
  position: absolute;
  top: 30%;
  width: 50%;
  left: 30%;
  transform: translate(-50%, 0%);
  text-align: center;
  color: #fff;
  z-index: 2;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
}

.banner-part .banner-text h1 {
  font-family: var(--heading-font);
  font-size: 70px;
}

.banner-part .banner-text p {
  padding: 1rem 0 3rem 0;
  line-height: 1.2;
}

.banner-part .banner-button {
  display: flex;
  justify-content: center;
}

.banner-part .bride-button {
  margin-right: 30px;
}

/* carousel */
.home-slider {
  padding: 0 0 1rem 0;
}

.home-slider .item {
  /* border: 3px solid #000;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 106px;
    margin: 0 auto;
    transition: transform 0.5s; */
  transition: transform 0.5s;
}

/* .home-slider .item a {
    margin-bottom: 21px;
    margin-top: 48px;
    border: 3px solid #000;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    margin: 0 auto;
} */

.home-slider .item span {
  /* opacity: 0; */
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  top: 7px;
  /* position: relative; */
}

.home-slider .item .owl-item-text {
  text-align: center;
}

/* .home-slider .item:hover span {
    opacity: 1;
    position: relative;
    z-index: 1;
} */

.home-slider .owl-stage {
  padding: 21px 0 20px;
}

/* .home-slider .owl-carousel {
    padding: 0 37px;
} */

.home-slider .item:hover {
  transform: scale(1.2);
  /* background-color: #1e170d; */
  border: 0;
}

/* .home-slider .owl-carousel .owl-item img {
    width: auto;
    height: 48px;
} */
.home-slider .owl-nav {
  font-size: 32px;
}

.home-slider-wrap {
  padding: 2rem 0 2rem 0;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.home-slider .owl-nav button {
  border: 1px solid var(--black-color) !important;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 57%;
  background-color: var(--white-color) !important;
}

.home-slider .owl-prev i {
  /* content: "\f053"; */
  font-size: 12px;
  margin-top: 2px;
}

.home-slider .owl-next i {
  /* content: "\f054";  */
  font-size: 12px;
  margin-top: 2px;
}

.home-slider .owl-next {
  position: absolute;
  right: 0;
  top: 36%;
}

.home-slider .owl-prev {
  position: absolute;
  left: 0;
  top: 36%;
}

/* .home-slider .item a:hover {
    place-content: center;
    color: var(--black-color);
    width: 106px;
    text-shadow: 0 1px 0 #000;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle),
            #fff,
            #fff 5%,
            #fff 60%,
            #fff 95%);
    border: solid 5px transparent;
    border-radius: 50%;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #fff, #fff 99%, transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    -webkit-animation: bg-spin 3s linear infinite;
    animation: bg-spin 3s linear infinite;
    box-shadow: 0px 0px 6px 0px rgb(59 54 54 / 28%);
} */

/* 
.home-slider .owl-item:nth-child(3) .item:hover {
    background: #a7762f38;
}

.home-slider .owl-item:nth-child(4) .item:hover {
    background: #84978659;
}

.home-slider .owl-item:nth-child(5) .item:hover {
    background: #647dc338;
}

.home-slider .owl-item:nth-child(6) .item:hover {
    background: #581d3338;
}

.home-slider .owl-item:nth-child(7) .item:hover {
    background: #e9101052;
}

.home-slider .owl-item:nth-child(8) .item:hover {
    background: #ff6a0047;
}

.home-slider .owl-item:nth-child(9) .item:hover {
    background: #ffc21547;
}

.home-slider .owl-item:nth-child(10) .item:hover {
    background: #c4fd1547;
}

.home-slider .owl-item:nth-child(11) .item:hover {
    background: #00000033;
}

.home-slider .owl-item:nth-child(12) .item:hover {
    background: #43878733;
}

.home-slider .owl-carousel .owl-item img:hover {
    filter: none;
} */

/* blog */
.blog .blog-img {
  position: relative;
  height: 100%;
}

.blog-img img {
  width: 100% !important;
  height: 100%;
}

.blog-img-text {
  position: absolute;
  top: 0;
  right: 0;
}

.blog-img-text {
  position: absolute;
  top: 50%;
  right: 0;
  background: #0000008f;
  color: #fff;
  text-align: start;
  display: inline-block;
  width: 458px;
  min-height: 400px;
  padding: 25px 11px;
  transform: translate(0, -50%);
}

.blog-img-text p {
  font-family: var(--heading-font);
  padding: 2rem 0 1rem 0;
  font-size: 39px;
  font-weight: 600;
}

.head {
  font-size: 15px !important;
  font-family: var(--primary-font) !important;
}

.blog-site-img img {
  width: 55px !important;
  height: 41px;
}

.blog-site-img {
  position: absolute;
  left: -31px;
  top: -19px;
  -webkit-animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.blog-text-img {
  position: relative;
  padding: 0 0 31px 0;
}

.blog-text-img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffffe3;
  content: "";
}

.blog-text-img .blog-site-img2 {
  position: absolute;
  /* left: 50%; */
  rotate: 287deg;
  right: 21px;
  z-index: 1;
  top: 19px;
}

/* .blog-text-img::after{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #f2f1f1c9;
} */
.blog-sec {
  position: relative;
  z-index: 1;
}

.blog-sec .card {
  position: relative;
  /* margin: 1rem 1rem; */
  margin-bottom: 90px;
  padding: 0 10px;
  background: transparent;
  border: none;
}

.blog-sec .card .card-body {
  position: absolute;

  background: #fff;
  right: -11px;
  left: 0;
  margin-left: 2rem;
  height: 151px;
  bottom: -20px;
}

.blog-text-img .beauty-button {
  margin-left: 12px;
}

.blog-sec .card .card-body .card-text {
  position: relative;
  font-size: 15px;
  font-family: var(--primary-font);
  margin-top: 9px;
  font-weight: 600;
  color: var(--black-color) !important;
}

.blog-sec .card .card-body small {
  font-size: 12px;
  color: var(--black-color) !important;
}

.blog-sec .card .card-body .card-text::after {
  position: absolute;
  content: "";
  background-color: var(--black-color);
  width: 119px;
  height: 1px;
  bottom: -10px;
  left: 0;
}

.blog-sec h2 {
  padding: 3rem 0 2rem 2rem;
  font-size: 75px;
}

.beauty {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.beauty-site-img {
  position: absolute;
  right: 0;
  z-index: -1;
  bottom: -34px;
  -webkit-animation: mover2 1s infinite alternate;
}

@-webkit-keyframes mover2 {
  0% {
    transform: translatex(0);
  }

  100% {
    transform: translatex(-10px);
  }
}

@keyframes mover2 {
  0% {
    transform: translatex(0);
  }

  100% {
    transform: translatex(-10px);
  }
}

.beauty-img img {
  -webkit-animation: mover 1s infinite alternate;
}

.beauty .beauty-text {
  margin-left: 7rem;
  margin-top: 3rem;
}

.beauty-text h2 {
  padding: 1rem 0 1rem 0;
  font-size: 57px;
}

.beauty-text p {
  padding-bottom: 4rem;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1px;
}

/* wishlist */
.wishlist {
  /* padding: 100px 0; */
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  z-index: 1;
}

.wishlist::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) -1%,
      rgba(255, 255, 255, 0.04) 1%,
      rgb(255 255 255 / 66%) 54%,
      rgba(255, 255, 255, 1) 98%);
  z-index: -1;
}

.wishlist-img .carousel-item {
  position: relative;
}

.wishlist-img .carousel-item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) -1%,
      rgba(255, 255, 255, 0.04) 1%,
      rgb(255 255 255 / 66%) 54%,
      rgba(255, 255, 255, 1) 98%);
}

.wishlist-text {
  position: absolute;
  z-index: 1;
  top: 50px;
}

.wishlist-text h3 {
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--black-color);
  text-shadow: -6px 0px 10px #ffffff;
}

.wishlist-text h2 {
  padding: 1rem 0 2rem 0;
}

.wishlist .carousel-indicators [data-bs-target] {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.wishlist .carousel-indicators {
  justify-content: start;
  margin-left: 5%;
}

.wishlist-text p {
  padding-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 29px;
  color: var(--black-color);
}

/* vendor */
.vendor {
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vendor-site-img {
  position: absolute;
  left: 0;
  /* transform: translate(-50%, 0); */
  z-index: -1;
  right: 0;
  -webkit-animation: mover 1s infinite alternate;
}

.vendor-text {
  padding-top: 6rem;
}

/* .vendor-text h2 {
    font-size: 100px;
} */

.vendor-text-img {
  color: var(--white-color);
}

.vendor-text-img h2 {
  color: var(--white-color);
  text-align: start;
  font-size: 43px;
}

.vendor-text-img {
  padding-top: 1rem;
}

.vendor-text-img p {
  text-align: start;
  padding: 0 0 3rem 0;
  font-size: 30px;
  height: 155px;
}

.circle-img {
  position: absolute;
  left: -78px;
  rotate: 89deg;
  top: 50%;
  z-index: -1;
  -webkit-animation: mover2 1s infinite alternate;
}

.circle-img2 {
  position: absolute;
  rotate: -89deg;
  right: 0;
  bottom: -247px;
  z-index: -1;
}

.vendor-button a {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  padding: 10px 11px;
}

.vendor-button {
  text-align: start;
}

.vendor-img img {
  width: 100%;
}

.vendor-text p {
  padding-bottom: 5rem;
  font-size: 29px;
  font-weight: 600;
}

.vendor .col-md-3:nth-child(2),
.vendor .col-md-3:nth-child(3),
.vendor .col-md-3:nth-child(4),
.vendor .col-md-3:nth-child(5) {
  margin-bottom: 50px;
}

.gift {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gift::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgb(235 235 235 / 51%);
}

.gift-text {
  position: relative;
  z-index: 1;
}

.gift .gift-text p {
  padding: 2rem 0 3rem 0;
  font-size: 31px;
  font-weight: 600;
}

.gift .gift-button a {
  margin-right: 1rem;
  border-radius: 0;
}

.gift-text h2 {
  letter-spacing: 1px;
  font-size: 65px;
}

.gift .gift-button {
  display: flex;
}

.real {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 0 5rem 0;
  overflow: hidden;
  position: relative;
}

.reel-text h2 {
  font-family: var(--default-font);
  font-size: 115px;
  font-weight: 400;
  display: inline;
  line-height: 0.7;
  position: relative;
}

.reel-text h2 span {
  font-size: 252px;
  font-weight: 400;
}

.reel-text p {
  font-weight: 600;
  font-size: 28px;
  margin-left: -3rem;
  margin-top: 3rem;
  line-height: 1.2;
}

.reel-box2 .reel-text {
  text-align: right;
  margin-right: -47px;
  max-width: 148px;
}

.reel-wrap {
  text-align: center;
}

.reel-wrap h3 {
  font-size: 42px;
  font-weight: 600;
  padding-bottom: 8px;
}

.reel-wrap h3 span {
  font-size: 23px;
  font-weight: 400;
}

.gown {
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* .gown-site-pic {
    position: absolute;
    z-index: -01;
    top: -126px;
    left: -61px;
} */
.gown-list::before {
  position: absolute;
  display: block;
  content: "";
  right: 50%;
  top: -10%;
  width: 100%;
  height: 27%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;

  background-image: url("../images/line.png");
}

.wishlist .carousel-indicators [data-bs-target] {
  background-color: var(--pink);
}

.gown-list::after {
  position: absolute;
  display: block;
  content: "";
  right: 0px;
  left: 97%;
  top: 42%;
  width: 7%;
  height: 32%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;

  background-image: url("../images/line.png");
}

.gown-img-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  z-index: -1;
}

.wraper-side-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/* .bride-gown .wraper-side-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
} */
.wraper-side-img2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.gown p {
  padding-bottom: 4rem;
  font-weight: 600;
  font-size: 24px;
  padding-top: 11px;
}

.gown-img {
  position: relative;
}

.gown .gown-icon img {
  margin-top: 16px;
}

.gown-icon {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #000;
  display: inline-block;
  width: 107px;
  height: 107px;
  padding: 14px 12px;
  border-radius: 50%;
  /* outline: 2px solid #fff;
    outline-offset: 10px; */
}

.gown-icon::after {
  position: absolute;
  content: "";
  border: 2px solid var(--white-color);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: -10px;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  top: -12px;
  bottom: 0;
}

.gown-box {
  position: relative;
  transition: transform 0.5s;
  overflow: hidden;
  padding: 0 0 36px 0;
}

.gown-text {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.gown-text:hover {
  color: var(--black-color);
}

.gown-text h4 {
  font-size: 19px;
  color: var(--black-color) !important;
}

.gown-button-text {
  border: 1px solid var(--black-color) !important;
  padding: 7px 56px;
  font-size: 21px;
  transition: all 0.5s ease;
  color: #000 !important;
}

.gown-button-text:hover {
  background-color: var(--black-color);
  color: #fff !important;
}

.gown .beauty-button {
  padding-top: 5rem;
}

.like {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}

.like-text h2 {
  color: var(--white-color);
  font-size: 192px;
  line-height: 1;
  font-weight: 300;
}

.like .owl-nav {
  color: var(--white-color);
  font-size: 37px;
  display: none !important;
}

.like .like-carousel {
  position: relative;
}

.like .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: 62%;
  transform: translate(0, -303%);
  background: #000;
  border: 1px solid #000 !important;
  display: flex;
  width: 39px;
  height: 37px;
  border-radius: 56%;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
}

.like .owl-nav span {
  color: var(b);
}

.like .owl-prev {
  position: absolute;
  left: 0;
  top: 62%;
  transform: translate(0, -303%);
  background: #000;
  border: 1px solid #000 !important;
  display: flex;
  width: 39px;
  height: 37px;
  border-radius: 56%;
  justify-content: center;
  align-items: center;
}

.like .item {
  /* position: relative; */
  overflow: hidden;
  /* display: inline-block; */
}

.like .item .active {
  padding-bottom: 100px;
}

.like-img {
  position: relative;
  margin-top: -10px;
}

/* .like-img:hover img {
    transform: scale(1.2); 
    transform: translateY(-10px);
   
} */
.like-img img {
  width: 100%;
  height: auto;
  display: block;
}

.like-view-button {
  position: absolute;
  bottom: -100px;
  left: 0;
  background: #ffffff69;
  width: 163px;
  display: flex;
  justify-content: center;
  height: 48px;
  align-items: center;
  /* transform: translate(25%, 0); */
  font-size: 20px;
  transition: 0.5s ease;
  opacity: 0;
  right: 0;
  margin: 0 auto;
}

.like .item:hover .like-view-button {
  bottom: 29px;
  opacity: 1;
}

.like-carousel .owl-item a {
  position: relative;
}

.like-carousel .owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}

.like-view-button {
  color: var(--white-color);
}

.like .owl-item-text {
  color: var(--white-color);
  padding-top: 1rem;
}

.like .owl-item-text p {
  font-size: 22px;
}

.like .owl-text-para {
  font-size: 15px !important;
  padding-top: 11px;
}

.owl-side-img {
  position: absolute;
  right: 0;
  top: -2%;
}

/* .owl-side-img::after{
    background-color: #fff;
    position: absolute;
    width: 10px;
    height: 10px;
} */
.like_owl {
  position: relative;
}

/* .like .item img {
    transition: transform 0.5s;
    overflow: hidden;
}

.like .item:hover img {
    transform: scale(1.45, 1.3);

} */
.like .item {
  transition: all 0.3s ease-in-out;
}

.Design {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  background-attachment: fixed;
}

.Design .gift-button {
  padding-top: 3rem;
}

.designer-text h2 {
  font-size: 81px;
  letter-spacing: 1;
}

.personal h2 {
  font-size: 100px;
  text-align: center;
}

/* bride-gown */
.bride-gown {
  position: relative;
  padding: 5rem 0;
  text-align: center;
}

.bride-gown-site-pic {
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-animation: mover 1s infinite alternate;
}

.bride-gown-site-pic2 {
  position: absolute;
  top: 50%;
  transform: translate(0, -159%);
}

.bride-gown p {
  padding-bottom: 4rem;
  color: var(--black-color);
  font-size: 27px;
  font-weight: 600;
}

.bride-gown-site-pic3 {
  position: absolute;
  left: 50%;
  z-index: -1;
  bottom: -30%;
}

.bride-gown .beauty-button {
  padding-top: 6rem;
}

/* personal */
.personal {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  background-attachment: fixed;
}

.personal .gift-button {
  padding-top: 3rem;
  text-align: center;
}

.blog-post {
  text-align: center;
  position: relative;
  padding-bottom: 5rem;
}

.blog-post.blog-post-venue-detail {
  padding-bottom: 1rem;
}

.blog-post-side-img {
  position: absolute;
  left: -174px;
  z-index: -1;
  -webkit-animation: mover 1s infinite alternate;
}

.blog-post h2 {
  padding: 5rem 0;
}

.blog-post-img {
  width: 100%;
  object-fit: cover;
}

.blog-post-text {
  padding-top: 1rem;
}

.blog-post-img img {
  width: 100%;
  object-fit: cover;
  height: 300px;
}

.blog-post-text h6 {
  font-family: var(--heading-font);

  font-size: 21px;
  font-weight: 600;
}

.blog-post-text h3 {
  font-family: var(--heading-font);
  font-size: 21px;
  padding-bottom: 1rem;
}

.blog-post-text .bride-buttontwo {
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  border-radius: 0;
}

.blog-post .gift-blog {
  padding-top: 1rem;
}

.blog-post-side-img2 {
  position: absolute;
  right: 0;
  /* height: 68px; */
  z-index: -1;
  bottom: -44%;
  -webkit-animation: mover 1s infinite alternate;
}

.partner {
  background-color: #eaeaec;
  padding: 50px 0;
}

.partner h2 {
  font-size: 54px;
}

/*  Styling  */
.ticker-container .ticker-tape {
  height: auto;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 84px 0;
}

.ticker-container .ticker-tape:before,
.ticker-container .ticker-tape:after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.ticker-container .ticker-tape:after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.ticker-container .ticker-tape:before {
  left: 0;
  top: 0;
}

.ticker-container .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.ticker-container div.slide {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner .slide img {
  width: auto;
  height: 24px;
}

.testimonial {
  position: relative;
  padding-bottom: 5rem;
  text-align: center;
}

.testi-up-img {
  position: absolute;
  left: 0;
  right: 0;
}

.testi-text {
  padding-top: 5rem;
  position: relative;
}

.testi-text-img {
  margin: 0 auto;
}

.testimonial .carousel-item p {
  color: var(--black-color);
}

.testimonial h2 {
  padding-top: 5rem;
}

.testimonial .carousel {
  position: relative;
  /* padding-top: 3rem; */
  padding: 3rem 0 2rem 0;
}

.testimonial .testi-star nav a {
  color: var(--brown-color);
}

.testimonial .carousel-control-next {
  opacity: 1;
}

.testimonial .carousel-control-prev {
  opacity: 1;
}

.testimonial .carousel-control-prev {
  filter: invert(1);
  border: 1px solid;
  display: flex;
  width: 44px;
  height: 43px;
  border-radius: 55%;
}

.testimonial .carousel-control-prev {
  left: 0;
  top: 38%;
}

.testimonial .carousel-control-next-icon {
  filter: invert(1);
  border: 1px solid;
  display: flex;
  width: 44px;
  height: 43px;
  border-radius: 55%;
}

.testimonial .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial .carousel-item {
  padding: 0 135px;
}

.testimonial .carousel-item h3 {
  color: var(--black-color);
  font-weight: 600;
  padding-top: 2rem;
  font-size: 31px;
}

.testi-star {
  padding-top: 2rem;
}

.email {
  background-color: #eaeaec;
  padding: 50px;
}

.testi-last-img {
  position: absolute;
  left: 0;
  z-index: -1;
  top: 50%;
  transform: translate(0, 31%);
}

.testi-last-img2 {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  transform: translate(0, 31%);
}

.email-text {
  text-align: center;
  position: relative;
}

.email-text .form-control {
  border-radius: 24px;
  width: 55%;
  margin: 0 auto;
  height: 51px;
  border: 1px solid var(--black-color);
}

.email-text p {
  padding-bottom: 1rem;
}

.right-email {
  position: absolute;
  right: 0;
  left: 50%;
  top: 84%;
}

.team {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.team-text h2 {
  text-align: end;
  font-weight: 500;
}

.team-img-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  position: relative;
  margin-left: -107px;
  z-index: 1;
}

.team-img {
  position: relative;
}

.team-side-img {
  position: absolute;
  right: 58px;
  /* -webkit-animation: mover 1s infinite alternate; */
  top: 45px;
  z-index: -1;
}

.team-side-img2 {
  position: absolute;
  bottom: -26px;
  z-index: -1;
  left: 17px;
  /* margin: 0 auto; */
  /* transform: translate(117%, -8%); */
}

.team .team-list {
  color: var(--white-color);
  padding: 0 10px 36px 52px;
}

.team .team-list li a {
  padding-bottom: 0;
  font-size: 43px;
  font-family: var(--heading-font);
  color: var(--white-color);
  font-weight: 500;
}

.team-button .bride-buttontwo {
  border-radius: 0;
}

.team-button .bride-buttontwo:hover {
  border: 1px solid var(--white-color);
}

.team-button {
  padding-left: 56px;
}

.team-text img {
  width: 100%;
}

.team-img h2 {
  font-size: 120px;
  margin-top: -2rem;
  line-height: 1.1;
}

.team-text h2 {
  font-size: 89px;
}

.footer-part {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 0px 0;
  color: var(--white-color);
  position: relative;
  z-index: 1;
}

.footer-menu-list li a {
  color: var(--white-color);
  font-family: var(--heading-font);
}

.footer-menu article {
  padding-bottom: 2rem;
  font-size: 21px;
  font-family: var(--heading-font);
}

.footer-menu-list li {
  padding-bottom: 7px;
  font-size: 20px;
}

.menu2 {
  padding-top: 4rem;
}

.menu2 nav a {
  padding-right: 9px;
}

.menu2 nav {
  padding-top: 1rem;
}

.footer-part .logo {
  text-align: start;
}

.footer-part .logo {
  text-align: start;
  padding-bottom: 1rem;
}

.footer-part .logo h5 a {
  color: var(--white-color) !important;
}

.bottom-footer {
  padding: 15px 0 5px 0;
  text-align: center;
}

.bottom-footer p {
  font-size: 15px;
}

.home-date.box .running {
  animation-play-state: running !important;
}

.box {
  place-content: center;
  color: var(--black-color);
  width: 80px;
  /* text-shadow: 0 1px 0 #000; */
  --border-angle: 0turn;
  --main-bg: conic-gradient(from var(--border-angle),
      #f4f4f4,
      #f4f4f4 5%,
      #f4f4f4 60%,
      #f4f4f4 95%);
  border: solid 5px transparent;
  border-radius: 5px;
  --gradient-border: conic-gradient(from var(--border-angle),
      transparent 25%,
      #fff,
      #fff 99%,
      transparent);
  background:
    var(--main-bg) padding-box,
    var(--gradient-border) border-box,
    var(--main-bg) border-box;
  background-position: center center;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
  -webkit-box-shadow: 0px 0px 105px 45px rgba(45, 255, 196, 0.9);
  -moz-box-shadow: 0px 0px 105px 45px rgba(45, 255, 196, 0.9);
  box-shadow: 0px 0px 6px 0px rgb(59 54 54 / 28%);
}

@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}

@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}

/* .box:hover {
    animation-play-state: running; } */

@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

.like .owl-stage {
  padding-top: 35px;
}

.real .real-text {
  font-size: 121px;
  position: absolute;
  top: -95px;
  border: unset !important;
  right: -8px;
}

.real .real-text::after {
  content: none;
}

.reel-text h2 ::after {
  position: absolute;
  background-color: var(--black-color);
  content: "";
  width: 392px;
  height: 1px;
  right: -28rem;
  top: 51%;
}

/* inner-banner */
.inner-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
  z-index: 1;
}

.inner-banner .banner-text {
  text-align: center;
  color: var(--white-color);
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

.inner-banner::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgb(0 0 0 / 71%);
  z-index: -1;
}

.inner-banner .banner-button {
  display: flex;
  justify-content: center;
}

.inner-banner .banner-text p {
  padding: 1rem 0 3rem 0;
  line-height: 1.2;
}

.inner-banner .banner-text h1 {
  font-family: var(--heading-font);
  font-size: 70px;
}

.inner-banner-service {
  padding: 3rem 0 10px 0;
  position: relative;
}

.inner-banner-service .testi-last-img {
  left: 0;
  bottom: 0;
  top: unset;
}

.inner-banner-service .testi-last-img2 {
  right: 0;
  bottom: 0;
  top: unset;
}

.inner-banner-serviceimg-box {
  margin-bottom: 27px;
  position: relative;
}

.innerbanner-service-box {
  margin-bottom: 59px;
}

.innerbanner-service-box h3 {
  font-size: 36px;
}

.innerbanner-service-box .bride-buttonone {
  border-radius: 0;
  font-size: 16px;
  padding: 7px 13px;
  height: 48px;
  border: 2px solid var(--black-color);
}

.innerbanner-service-box .bride-buttonone:hover {
  border: 2px solid var(--black-color);
  background-color: transparent;
}

.innerbanner-service-box p {
  /* margin-bottom: 18px; */
  font-weight: 600;
  height: 242px;
}

.banner-text ul li a {
  color: var(--white-color);
}

.banner-text ul li {
  padding-right: 10px;
}

/* ul.d-flex.justify-content-center {
    margin-top: 25px;
    font-size: 19px;
    font-family: var(--primary-font);
} */

.bride-gown .btn-secondary {
  color: #000 !important;
  background-color: transparent !important;
  border-color: #565e64 !important;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 22px;
}

.dropdown-menu-part {
  /* display: flex; */
  /* justify-content: center; */
  margin-top: 53px;
}

.dropdown-menu-part .dropdown-menu {
  width: 100%;
}

.dropdown-menu-part .dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--black-color);
}

.team-text img {
  outline: 3px solid #fff;
  outline-offset: -41px;
  position: relative;
}

.gift-button a {
  margin-right: 41px;
}

.owl-line {
  position: absolute;
  width: 213px;
  height: 2px;
  background: #fff;
  left: -239px;
  top: 12px;
}

.like .item:hover {
  margin-top: -72px;
  padding-bottom: 100px;
}

.like-text {
  text-align: center;
}

.like .item:hover p {
  font-size: 25px !important;
}

.like .item:hover img {
  min-height: 459px;
  object-fit: cover;
}

.like .item:hover .like-view-button {
  left: -21px;
  width: 216px;
  font-size: 30px;
}

.top-menu {
  border: 1px solid #000;
  padding: 12px 9px;
  margin-top: -10px;
}

.directory .dropdown-menu-part {
  display: flex;
  justify-content: center;
}

.directory .dropdown {
  margin-bottom: 4rem;
  text-align: center;
  margin-right: 8px;
}

.dropdown-toggle::after {
  content: none;
}

.directory .btn-secondary {
  color: #000 !important;
  background-color: transparent !important;
  border-color: #565e64 !important;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 22px;
}

.blog-post-box {
  margin-bottom: 46px;
  border: 1px solid #0000002b;
  background-color: #00000005;
  padding-left: 11px;
  padding-bottom: 12px;
  padding-top: 12px;
  min-height: 92%;
  padding-right: 11px;
}

/* .vendors input {
    width: 100%;
    padding: 1px 12px;
} */
.vendors {
  position: relative;
}

.vendors img {
  position: absolute;
  top: 3px;
  right: 4px;
}

.vendors::placeholder {
  font-size: 10px;
  padding: 0 10px;
}

.stellarnav {
  width: unset !important;
}

.blog-location i {
  color: #fbaf00;
}

.blog-post-box .blog-post-text h6 {
  font-size: 20px;
  font-weight: 600;
  color: #000 !important;
}

.blog-post-box .blog-post-text p {
  color: #000 !important;
}

.vendor .vendor-text h2 {
  font-size: 87px;
}

/* product
.menu-link {
    display: inline-block;
    position: relative;
    padding: 0.5em 0;
    color: #222222;
    line-height: 1.5em;
}
.shop-acs__select {
    padding-right: 0.9375rem;
    background-position: right center;
    cursor: pointer;
    padding-left: 0;
    box-shadow: none !important;
    text-transform: uppercase;
    font-weight: 500;
}
.shop-asc__seprator {
    width: 2px;
    height: 22px;
    background-color: var(--black-color);
}
.btn-link {
    display: inline-block;
    position: relative;
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #222222;
    font-weight: 400;
    text-decoration: none;
}
.product-card {
    position: relative;
    overflow: hidden;
}
.pc__img-wrapper {
    display: block;
    position: relative;
    height: 0;
    padding-top: 121.212122%;
    overflow: hidden;
} */

.directory .blog-post-side-img {
  width: 28%;
}

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

/* search */
.search-box {
  position: relative;
  height: 28px;
  line-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.home-login {
  font-family: var(--default-font);
  font-size: 25px;
  font-weight: 600;
}

.ph img {
  max-width: 31px;
}

.sign {
  color: var(--pink) !important;
}

header .product-icon a {
  font-size: 22px;
}

header .product-icon {
  padding: 10px 13px 18px;
}

.search-input {
  /* background-color: #EAEAEC; */
  color: #000;
  outline: none;
  border: none;
  line-height: 40px;
  width: 0px;
  font-size: 14px;
  transition: 0.7s ease;
  padding: 0;
}

.search-btn {
  text-decoration: none;
  /* padding: 12px; */
  /* border-radius: 50%; */
  color: var(--black-color);
  transition: 0.4s ease;
}

.search-box:hover>.search-input {
  width: 163px;
  /* margin: 0 -12px; */
  background-color: #eaeaec;
  padding: 0 10px;
}

.search-input:focus {
  width: 163px;
  background-color: #eaeaec;
}

.search-box:hover>.search-btn {
  color: var(--black-color);
}

.vendors {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  /* Ensures the div is only as wide as its contents */
}

#vendorInput {
  padding: 0 36px 0 6px;
}

/* product */
.product-categories {
  /* display: flex; */
  /* justify-content: center; */
  padding: 5rem 0;
  text-align: center;
}

.product-categories .cat_image img {
  border-radius: 10px;
}

.categories-sec .cat_inner .cat_image {
  width: 156px;
  height: 178px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
}

.categories-sec {
  padding: 5rem 0;
}

.slider-item {
  margin-right: 39px;
}

.product {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  transition: 0.5s ease-in;
  padding: 8px;
}

.product .text {
  background: #fff;
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 0 10px 10px;
}

.product .text h3 a {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}

.product .price {
  font-size: 15px;
  font-weight: 600;
}

.rating i {
  font-size: 15px;
}

.product .text p.price span.price-dc {
  text-decoration: line-through;
  color: #b3b3b3;
}

.product .text .pricing,
.product .text .rating {
  width: 50%;
}

.product .d-flex {
  display: flex !important;

  align-items: baseline;
}

.product .text .bottom-area {
  position: absolute;
  top: -100px;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  right: 0;
  margin: 0 auto;
}

.product:hover .text .bottom-area {
  opacity: 1;
}

.product .text .bottom-area span {
  background: #00000082;
  color: #fff;
  display: flex;
  width: 39px;
  border-radius: 102px;
  justify-content: center;
  align-items: center;
  height: 39px;
  padding-right: 1px;
  margin-left: 10px;
}

/* .product:hover {
    -webkit-box-shadow: 0 7px 15px -5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 7px 15px -5px rgba(0, 0, 0, 0.07);
    box-shadow: 0 7px 15px -5px rgba(0, 0, 0, 0.07);
    transform: translate(0, -10px);
} */

.product .img-prod .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  background: #b2905f;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product .img-prod span.status {
  position: absolute;
  top: 10px;
  right: 9px;
  padding: 2px 7px;
  color: var(--black-color);
  font-weight: 300;
  background: var(--white-color);
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.product:hover .img-prod span.status {
  opacity: 1;
  visibility: visible;
}

.block-27 ul {
  display: flex;
  justify-content: center;
}

.block-27 ul li {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 400;
  margin-left: 14px;
}

.block-27 ul li a,
.block-27 ul li span {
  color: #000;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.block-27 ul li.active a,
.block-27 ul li.active span {
  background: #000;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.ftco-section {
  padding: 5rem 0;
}

#filterButton {
  cursor: pointer;
}

.filter-box .bride-buttonone:hover {
  border: 1px solid var(--black-color);
  color: var(--black-color);
}

#filterToggle {
  display: none;
}

.filter-box .modal {
  display: flex;
  position: fixed;
  left: -50%;
  top: 0;
  width: 30%;
  height: 100%;
  overflow: auto;
  background-color: #fefefe;
  transition: left 0.3s ease;
}

#filterToggle:checked~.modal {
  left: 0;
  z-index: 9999;
}

.modal-content {
  background-color: #fefefe;
  /* margin: auto; */
  padding: 20px;
  border: 0 !important;
  width: 100%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

.filter-section {
  margin: 20px 0;
}

.filter-section h3 {
  margin-bottom: 10px;
}

.filter-section ul {
  list-style-type: none;
  padding: 0;
}

.filter-section ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.filter-section ul li input {
  margin-right: 10px;
}

.filter-section h4 {
  font-size: 18px;
  font-weight: 600;
}

.filter-section .modal-content {
  border: 0 !important;
}

.modal-content .form-select {
  border-radius: 20px;
  border: 1px solid #000;
}

.filter-section .bride-button {
  margin-right: 10px;
}

#filterButton span {
  margin-right: 10px;
}

.product img {
  width: 100% !important;
  height: 100%;
}

.product-slider .owl-nav {
  display: none;
}

.dress-details-page {
  padding: 5rem 0;
  position: relative;
}

.dress-details-blog-page .gown-box:hover {
  box-shadow: none;
}

.dress-details-blog-page .gown-text {
  text-align: left;
  border: 1px solid #00000029;
  padding: 35px 25px;
  height: 295px;
}

.dress-details-blog-page .gown-button-text {
  display: none;
}

.dress-details-blog-page .gown-text h4 {
  font-size: 14px;
  padding: 10px 0;
}

.dress-details-blog-page .gown-img img {
  width: 100%;
}

.blog-slider .item {
  position: relative;
}

.blog-slider .item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #ccb7b7b5;
  opacity: 0;
  z-index: 1;
}

.blog-slider .item:hover::after {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index: 9999;
  color: var(--white-color);
  opacity: 0;
  width: 100%;
  height: 100%;
  align-items: center;
}

.blog-slider .item:hover .hover-img {
  opacity: 1;
}

.hover-img i {
  margin-left: 15px;
  margin-right: 15px;
}

.dress-details-blog-page .gown-text p {
  font-size: 14px !important;
  padding-bottom: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 400;
}

.dress-details-blog-page .gown-text h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.dress-details-blog-page .gown-button {
  text-align: left;
}

.real-wrp-text h2 {
  font-size: 67px;
  font-weight: 600;
  text-transform: uppercase;
}

.real-wrp-text span {
  font-size: 141px;
  font-weight: 400;
  text-transform: uppercase;
}

.real-wrp-line {
  opacity: 1;
  width: 100%;
}

.real-wrp-text1 span {
  font-size: 56px;
}

.real-wrp-text1 h2 {
  font-size: 90px;
  line-height: 1.1;
}

.real-wrp-text1 {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.real-wrp-text1 .real-wrp-line {
  position: absolute;
  right: -28px;
  width: 67%;
}

.like-carousel .owl-item.active:last-child .like-img {
  position: relative;
  /* Ensure the parent container has a relative position */
}

.like-carousel .owl-item.active:last-child .like-img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #f0f0f0;
  z-index: 1;
}

.dress-details-blog-item {
  margin-top: 45px;
}

.dress-box-text {
  text-align: left;
}

.dress-box-text p {
  padding-bottom: 1rem;
  font-size: 21px;
}

.dress-details-blog-page .dress-box-text h3 {
  font-size: 13px;
}

.dress-details-blog-page .dress-box-text p {
  font-size: 10px;
}

.dress-box {
  display: flex;
  border: 1px solid #00000021;
  margin-bottom: 14px;
  justify-content: space-between;
  height: 128px;
  padding: 18px 10px;
}

.dress-box img {
  width: 26%;
  height: 76px;
  object-fit: cover;
}

.blog-slider {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.blog-slider img {
  width: 100%;
}

.blog-slider2 .owl-nav {
  text-align: center;
}

.blog-slider2 .owl-prev span {
  font-size: 54px;
}

.blog-slider2 .owl-next span {
  font-size: 54px;
}

.real .real-image2 {
  position: relative;
  z-index: 1;
}

.real .real-wrp-text {
  position: relative;
  z-index: 1;
}

.img1 {
  position: absolute;
  top: 0;
  left: 0;
}

.img2 {
  position: absolute;
  top: 0;
  right: 0;
}

.real-bg-img {
  height: 100%;
  object-fit: cover;
}

.product-img-box img {
  width: 100%;

  object-fit: cover;
}

section.product-single {
  padding: 9rem 0 0 0;
}

.product-single__rating {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  /* margin-bottom: 36px; */
  margin: 21px 0 24px;
}

.reviews-group i {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  color: #ff8400;
}

.product-single__price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-single__short-desc {
  margin-bottom: 2.1875rem;
}

.product-single__addtocart {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-direction: column;
  margin: 10px 0 10px;
}

.product-single__addtocart .qty-control {}

.product-single__addtocart .qty-control__number {
  border: 2px solid #e4e4e4;
  height: 3.75rem;
  padding: 0 2rem;
  min-width: 6.5rem;
}

.qty-control__number {
  padding: 0;
  width: 100%;
  background-color: #ffffff;
  outline: none;
  -moz-appearance: textfield;
}

.product-single__addtocart .qty-control__reduce,
.product-single__addtocart .qty-control__increase {
  font-size: 1rem;
  text-align: center;
  top: 60%;
  /* transform: translateY(-50%); */
  width: 2rem;
  position: absolute;
  cursor: pointer;
}

.qty-control__reduce {
  left: 0;
}

.qty-control__increase {
  right: 0;
}

.btn-primary:hover {
  color: #fff;
  background-color: #1d1d1d;
  border-color: #1b1b1b;
}

.product-single__addtocart .btn-addtocart {
  height: 3.75rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  width: 17.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.product-single__addtolinks {
  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2rem;
  /* margin-bottom: 2rem; */
  margin: 26px 0;
}

.product-single__addtolinks>a,
.product-single__addtolinks>.share-button>button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 0 0.625rem;
  text-transform: uppercase;
  border: 0;
  background-color: transparent;
  font-weight: 500;
  font-size: 17px;
}

.product-single__meta-info {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-single__meta-info label {
  color: #767676;
  text-transform: uppercase;
}

.product-single__details-tab {
  padding: 5rem;
  display: none;
}

.product-single__details-tab>.nav {
  justify-content: center;
  text-transform: uppercase;
}

.nav-link_underscore:hover,
.nav-link_underscore:focus,
.nav-link_underscore.active,
.nav-item.show .nav-link_underscore {
  color: #222222;
}

.nav-link_underscore:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 1.5625rem;
  width: 0;
  height: 2px;
  background-color: #222222;
  transition: width 0.36s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link_underscore:hover:after,
.nav-link_underscore:focus:after,
.nav-link_underscore.active:after,
.nav-item.show .nav-link_underscore:after {
  width: calc(100% - 3.125rem);
}

.nav-link_underscore {
  position: relative;
  padding: 0.6875rem 1.5625rem 0.4375rem;
  color: #767676;
}

.product-single__details-tab>.tab-content {
  padding: 4rem 0;
}

.content {
  margin-bottom: 1.5rem;
  font-size: 18px;
  line-height: 1.3;
}

.block-title {
  margin-bottom: 1rem;
  font-size: 26px;
}

.product-single__addtional-info>.item label {
  min-width: 8.75rem;
  margin: 0;
  font-weight: 600;
}

.product-single__addtional-info>.item {
  margin-bottom: 1.875rem;
}

.product-single__reviews-item {
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 31px;
  padding-bottom: 21px;
}

/* .product-single__reviews-item .customer-review .customer-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

/* .product-single__reviews-item .customer-review .review-date {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #767676;
    margin-bottom: 1.25rem;
} */

/* .product-single__reviews-item .customer-review .review-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #767676;
    margin-bottom: 1.5rem;
} */

.product-single__reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.87rem;
  margin-bottom: 2.375rem;
  margin-top: 38px;
}

.select-star-rating {
  /* margin-bottom: 24px; */
  margin: 19px 0;
}

.form-label-fixed>.form-label {
  position: absolute;
  top: -20px;
  left: 1rem;
  margin: 0;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  background-color: #ffffff;
  color: #222222;
  z-index: 1;
}

.form-label-fixed {
  position: relative;
}

.form-control_gray {
  border-color: #e4e4e4;
}

.form-label-fixed .form-control {
  height: 55px;
}

.related-product h2 {
  font-size: 59px;
}

.product-down-img {
  margin-top: 33px;
}

.product-down-img img {
  height: 127px !important;
  object-fit: cover !important;
}

.shop-checkout {
  padding: 9rem 0 0 0;
}

.shop-checkout .checkout-steps {
  display: flex;
  border-bottom: 2px solid #e4e4e4;
}

.shop-checkout .checkout-steps__item.active {
  border-color: #222222;
}

.shop-checkout .checkout-steps__item {
  flex-grow: 1;
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.shop-checkout .checkout-steps__item-number {
  font-size: 1.125rem;
  font-weight: 500;
}

.shop-checkout .checkout-steps__item-title {
  display: flex;
  flex-direction: column;
}

.shop-checkout .checkout-steps__item-title>span {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}

.shopping-cart .cart-table thead th {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0 0.625rem;
}

.shopping-cart .cart-table {
  width: 100%;
}

.shopping-cart .cart-table__wrapper {
  padding-top: 3.125rem;
  flex-grow: 1;
}

.shopping-cart {
  display: flex;

  gap: 3.625rem;
}

.shopping-cart__totals-wrapper .sticky-content {
  padding-top: 3.125rem;
}

.shopping-cart__totals {
  border: 1px solid #222;
  margin-bottom: 1.25rem;
  padding: 2.5rem 2.5rem 0.5rem;
  max-width: 100%;
}

.shopping-cart__totals-wrapper .btn-checkout {
  width: 100%;
  height: 3.75rem;
  font-size: 0.875rem;
}

.shopping-cart .cart-table .qty-control__number {
  border: 2px solid #e4e4e4;
  height: 3.125rem;
  padding: 0 2rem;
  min-width: 6.875rem;
}

.shopping-cart .cart-table tbody td {
  padding: 1.875rem 0;
  display: table-cell;
  margin: 0;
}

.shopping-cart .cart-table tbody tr:first-child {
  border: 0;
}

.shopping-cart .cart-table tbody tr:first-child {
  border-top: 1px solid #e4e4e4;
}

.shopping-cart .cart-table tbody tr {
  display: table-row;
  padding: 0;
  border: 0;
}

.shopping-cart__product-item__detail h4,
.shopping-cart__product-item__detail .h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.shopping-cart__product-item__options {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
}

.shopping-cart .cart-table tbody tr td {
  transition: all 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.qty-control__number {
  padding: 0;
  width: 100%;
  background-color: #ffffff;
  outline: none;
}

.shopping-cart .cart-table .qty-control__reduce,
.shopping-cart .cart-table .qty-control__increase {
  font-size: 1rem;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.shopping-cart .cart-table .qty-control {
  width: 7.25rem;
  margin: 0;
}

.directory-detail-about .team-side-img {
  right: 0;
  bottom: 0;
  z-index: -1;
  top: unset;
}

.directory-img img {
  height: 500px;
  object-fit: cover;
}

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

.gallery {
  padding: 5rem 0;
  text-align: center;
  background-color: #eaeaec;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-position: center;
}

.gallery-single-img {
  position: relative;
  margin-bottom: 20px;
}

.gallery-single-img .overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-single-img:hover .overlay-text {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.gallery-single-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgb(255 255 255 / 90%);
  border: 1px solid var(--black-color);
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}

.gallery-single-img:hover::after {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

/* .overlay-text h5 {
    color: var(--black-color);
    margin-bottom: 8px;
   
    font-size: 25px;
    font-weight: 700;
}
.overlay-text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
} */
.gallery h2 {
  /* margin-bottom: 89px; */
  margin-bottom: 40px;
}

.image-group-1 {
  display: flex;
  flex-direction: column;
}

.image-group-1 img {
  max-width: 60%;
  height: 466px;
}

.image-group-1 img:nth-of-type(2) {
  margin-top: -38.3%;
  margin-left: auto;
}

.image-group-1 img:nth-of-type(1) {
  height: 400px;
  object-fit: cover;
  margin-left: 10%;
}

.amenities-details {
  padding: 0 0 5rem 0;
  position: relative;
}

.amenities-text li {
  font-size: 19px;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}

.amenities-text ul {
  display: grid;
  grid-template-columns: auto auto;
  margin-top: 50px;
}

.amenities-text li span {
  /* background-color: #3f3d3d29; */
  background-color: #d6cfc6;
  width: 36px;
  height: 36px;
  margin-right: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* color: #fff; */

  i {
    color: #1f1f1f;
  }
}

.amenities-details .col-md-6 {
  margin-top: 5rem;
}

.details-contact-form {
  /* background: #eaeaec; */
  padding: 26px;
  margin-left: -21px;
}

.details-contact-form p {
  font-size: 19px;
}

.details-contact-form p a {
  color: var(--pink);
}

.details-contact-form .col-md-6,
.details-contact-form .col-12 {
  margin-top: 12px;
}

.details-contact-form input,
.details-contact-form textarea {
  border-radius: 10px;
  line-height: 31px;
}

.details-contact-form button {
  border: 1px solid;
  font-size: 13px;
  padding: 3px 16px;
  height: auto;
  border-radius: 10px;
}

.details-contact {
  padding: 0 0 5rem 0;
}

.details-img img {
  width: 100%;
}

.details-contact-form .message {
  margin-top: 31px;
}

.details-contact-form .form-message {
  height: 108px !important;
}

.details-contact-form .bride-buttontwo {
  background-color: var(--black-color);
  color: var(--white-color);
}

.details-contact {
  position: relative;
}

.details-contact .gown-site-pic2 {
  display: none;
  bottom: 0;
}

.directory-text h3 {
  font-size: 45px;
}

.details-contact .gown-site-pic {
  position: absolute;
  z-index: -01;
  top: -104px;
  transform: none;
  bottom: unset;
  left: 0;
  display: none;
}

.bride-inner-page .gown-text h4 {
  margin-bottom: -4px;
  font-size: 17px;
  margin-top: 20px;
  font-weight: 600;
}

.blog-post-img {
  position: relative;
}

.blog-post-img i {
  position: absolute;
  top: 7px;
  right: 12px;
  font-size: 25px;
  z-index: 1;
  color: red;
  opacity: 0;
}

.blog-post-img:hover i {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.blog-post-img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #ccb7b7b5;
  opacity: 0;
}

.blog-post-img:hover::after {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.vendor-button {
  border: 1px solid var(--black-color);
  /* padding: 10px 16px; */
  margin-top: 0px;
  transition: all 0.5s;
  color: #000 !important;
  font-weight: 600;
}

.vendor-button:hover {
  background-color: var(--black-color);
  color: var(--white-color) !important;
}

.ph {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  align-items: center;
}

.ph a i {
  color: var(--black-color);
  font-size: 22px;
}

.related-product .owl-nav {
  display: none;
}

.blog-slider .owl-nav {
  display: none;
}

/* radio-button */
.radio__button {
  position: relative;
  display: inline-block;
}

.radio__button label {
  cursor: pointer;
  color: #664c4c;
  user-select: none;
  border: 1px solid #ffffff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  padding: 1em;
  height: 10px;
  width: 10px;
  overflow: hidden;
  display: flex;
  text-align: center;
  border-radius: 4px;
  margin: 10px 10px 14px 0;
  box-shadow: 0px 0px 5px #e5e5e5;
  transition: all 120ms ease-in-out;
  justify-content: center;
}

.radio__button label p {
  font-size: 12px;
  margin: 0;
}

.radio__button label:before {
  content: attr(data-icon);
  font-size: 16px;
  display: block;
  line-height: 0;
}

.radio__button input[type="radio"] {
  display: none;
}

.radio__button input[type="radio"]:checked+label {
  color: var(--black-color);
  border: 1px solid var(--black-color);
}

.radio__button input[type="radio"]:disabled+label {
  cursor: not-allowed;
  color: #ccc;
  border: 1px solid #e7e7e7;
}

.product-single .bride-buttonone {
  width: 100%;
}

.product-single .bride-buttonone:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

.product-single .swiper-button-next {
  background-color: white;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.product-single .swiper-button-next:after {
  font-size: 14px;
  color: #000;
}

.product-single .swiper-button-prev {
  background-color: white;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.product-single .swiper-button-prev:after {
  font-size: 14px;
  color: #000;
}

.product-icon.d-flex {
  align-items: baseline;
  gap: 10px;
}

.product-icon p {
  margin-right: 22px;
  font-size: 18px;
  font-weight: 600;
}

.product-icon a {
  color: var(--black-color) !important;
}

.single-product-box {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
}

.single-product-box i {
  font-size: 20px;
}

.product-single .product-down-img .swiper-slide-visible {
  cursor: pointer;
  width: 86px !important;
  height: 86px !important;
  outline: 1px solid #000;
  outline-offset: -1px;
}

.date-box {
  width: 25%;
}

/* color */
.color-box .selection {
  margin-bottom: 1em;
  margin-right: 10px;
}

.color-box .selection label {
  display: inline-block;
  width: 1rem;
  background-color: #42b4d6;
  color: #ffffff;
  padding: 10px 10px;
  cursor: pointer;
}

.color-box .selection input[type="radio"] {
  display: none;
}

.color-box .selection input[type="radio"]:checked~label {
  outline: 1px solid var(--black-color);
}

.color-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 10px 0;
}

#selection2 label {
  background-color: green;
}

#selection3 label {
  background-color: red;
}

.bride-inner-page .gown-box {
  box-shadow: 0 2px 10px 0 #00000075;
  margin-bottom: 41px;
  width: 100%;
}

.bride-inner-page .gown-icon {
  display: none;
}

/* .bride-inner-page  .gown-box{   
    width: 275px;
    height: 285px;
} */
.bride-inner-page .gown-text {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.bride-inner-page .gown-button-text {
  padding: 7px 10px;
  font-size: 12px;
  letter-spacing: 1px;
}

.bride-inner-page .gown-button-text {
  position: relative;
}

.bride-inner-page .gown-button-text::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  outline: 1px solid var(--black-color);
  outline-offset: 2px;
}

/* .bride-inner-page .col-md-2 {
    width: 20%;
}

.bride-inner-page .Gown-directory-list .col-md-2 {
    padding-right: calc(var(--bs-gutter-x) * .9);
    padding-left: calc(var(--bs-gutter-x) * .9);
} */

.ftco-section .product-detail-image .owl-nav {
  display: none;
}

.ftco-section .product-detail-image .owl-dots {
  display: none;
}

.ftco-section .product-detail-image .owl-item {
  transition: 0.5s ease-in;
  /* CSS transition for opacity */
}

.inner-banner-service .owl-item-text {
  background: #fff;
  border: 1px solid #000;
  padding: 33px 9px;
  /* margin-left: -121px; */
  position: relative;
  left: -263px;
  text-align: center;
  top: 23px;
  width: 571px;
  /* height: 87%; */
}

.inner-banner-service .owl-stage {
  padding-bottom: 24px;
}

.inner-banner-service .owl-dots {
  display: none;
}

.inner-banner-service .owl-item-text h6 {
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 600;
}

.inner-banner-service .owl-item-text h4 {
  position: relative;
  font-size: 31px;
}

.inner-banner-service .owl-item-text h4::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--black-color);
  width: 129px;
  height: 1px;
}

.inner-banner-service .owl-item-text h4::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--black-color);
  width: 173px;
  height: 1px;
}

.inner-banner-service .owl-item-text .bride-button {
  margin-top: 11px;
}

.inner-banner-serviceimg-box img {
  height: 500px;
  object-fit: cover;
}

.inner-page-title {
  position: absolute;
  bottom: 0;
  left: -137px;
  right: 0;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  border: 1px solid #000;
  background: #fff;
  width: 409px;
  height: 62px;
}

.inner-page-title h4 {
  margin-top: 9px;
  font-size: 37px;
  font-family: var(--heading-font);
}

.inner-logo-img img {
  height: 20px;
}

.inner-logo-img {
  position: absolute;
  right: 9px;
  top: 24px;
}

.inner-banner-service .owl-item-text p {
  font-size: 20px;
  margin-top: 23px;
  padding: 0 21px;
}

.inner-banner-service .owl-item-text .bride-buttonone {
  padding: 6px 22px;
  font-size: 14px;
  height: 46px;
  border: 1px solid var(--black-color);
  border-radius: 0;
  font-size: 13px;
  outline: 1px solid #000;
  outline-offset: 4px;
}

.inner-banner-service .owl-item-text .bride-buttonone:hover {
  border: 1px solid var(--black-color);
}

.service-slide .owl-nav {
  display: none;
}

.inner-page-slide .owl-nav {
  display: none;
}

.inner-page-slide .owl-item img {
  width: auto;
  height: 166px !important;
  object-fit: cover;
}

.inner-page-slide .item a {
  position: relative;
}

.inner-page-slide .item a::after {
  position: absolute;
  content: "";
  border: 2px solid var(--black-color);
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  left: -5px;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  top: -8px;
  bottom: 0;
}

.inner-page-slide .owl-stage-outer {
  padding: 40px 0px 86px !important;
}

.slider-icon-list a {
  display: block;
}

.slider-icon-list img {
  border: 2px solid var(--black-color);
  border-radius: 50%;
  padding: 10px 5px;
  transition: 0.5s ease-out;
}

.slider-icon-list img:hover {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.slider-icon-list .icon-text {
  text-align: center;
  margin-top: 17px;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--heading-font);
  letter-spacing: 2px;
}

.swift-up-text {
  color: var(--pink);
}

.wedding-plan_icon h3 {
  text-align: center;
  margin-top: 55px;
}

.slider-icon-list {
  text-align: center;
}

.swift-up-text span {
  display: inline-block;
  overflow: hidden;
  animation: 0.3s swift-up ease-in-out forwards;
}

.swift-up-text i {
  font-style: normal;
  position: relative;
  animation: 0.9s swift-up ease-in-out forwards;
  top: 55px;
}

@keyframes swift-up {
  to {
    top: 0;
  }
}

/* .bride-inner-page h2 {
    font-size: 21px;
    text-align: left;
} */

/* .bride-inner-page p {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
} */

.bride-inner-page .dropdown label {
  font-size: 10px;
  /* margin-right: 48px; */
  font-weight: 600;
  width: 100%;
  text-align: left;
}

.bride-inner-page .dropdown .form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  height: 33px;
  border-radius: 0;
  border: 1px solid #000;
  width: 271px;
}

.dropdown-content h4 {
  font-family: var(--default-font);
  text-align: left;
  font-weight: 600;
  font-size: 39px;
}

.dress-img-text h2,
.dress-img-text h3 {
  font-family: var(--default-font);
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.dress-img-text p {
  font-size: 16px;
}

.dress-details-img img {
  outline: 2px solid var(--black-color);
}

.blog-slider h4 {
  font-family: var(--default-font);
  text-align: center;
  margin-bottom: -4px;
  font-size: 22px;
  font-weight: 600;
  margin-top: -8px;
}

.blog-slider .text {
  text-align: center;
}

.blog-slider h3 {
  font-size: 17px;
  font-weight: 400;
}

.blog-slider .text h5 {
  font-size: 24px;
  font-weight: 400;
}

.new-contain {
  text-align: end !important;
  font-size: 24px !important;
}

.page-icon i {
  margin-right: 10px;
}

.page-icon {
  font-size: 11px;
}

.country a {
  font-size: 10px;
  text-align: left;
}

.country {
  text-align: left;
  margin-top: 29px;
  border-bottom: 1px solid #000;
}

.contact-box {
  text-align: center;
  background: #f7f7f7;
  padding: 89px 53px;
  margin-bottom: 28px;
  height: 88%;
}

.contact-connection-box {
  display: flex;
  justify-content: space-between;
}

.contact-page {
  padding: 2rem 0;
}

.contact-text p {
  font-size: 15px;
  padding: 8px 0;
}

.contact-btn {
  background-color: var(--black-color);
  border: 1px solid var(--black-color);
  color: var(--white-color);
  padding: 10px 0;
}

.contact-btn {
  background-color: var(--black-color);
  border: 1px solid var(--black-color);
  color: var(--white-color);
  padding: 6px 15px;
  font-size: 11px;
  margin-top: 16px;
  width: 136px;
  transition: all 0.5s;
}

.contact-btn:hover {
  background-color: transparent;
  color: var(--black-color);
}

.contact-button {
  display: flex;
  justify-content: center;
}

.contact-page .row .col-md-4:last-child .contact-box {
  padding: 66px 0;
}

.contact-page-form {
  padding-bottom: 2rem;
  margin-top: -53px;
}

.contact-page-form h2 {
  font-size: 32px;
  margin-bottom: 33px;
}

.contact-page-form .form-part {
  background: #f7f7f7;
  padding: 26px 28px 81px 28px;
  /* height: 818px; */
}

.contact-page-form .row {
  margin-right: calc(var(--bs-gutter-x));
}

.contact-page-form .form-part .form-control {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
  background: transparent;
  height: 49px;
  padding: 0 !important;
  transition: all 0.2s;
}

.contact-page-form .form-part .form-control:hover {
  border-width: 3px;
}

.form-select:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

.contact-page-form #inputState {
  background-color: transparent;
  margin-bottom: 23px;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  height: 49px;
  font-size: 12px;
  padding: 0 !important;
  cursor: pointer;
}

.contact-page-form input::placeholder {
  font-size: 12px;
  color: var(--black-color);
}

.form-label {
  margin-bottom: 0;
  font-size: 12px;
}

.subject {
  font-size: 12px;

  margin-top: 14px;
}

.subject::placeholder {
  color: var(--black-color);
}

.message {
  font-size: 12px;
  margin-top: 14px;
}

.contact-page-form .form-part .subject {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: transparent;
  height: 34px;
}

.message::placeholder {
  color: var(--black-color);
  text-transform: uppercase;
}

.contact-page-form .bride-buttontwo {
  border-radius: 25px;
  font-size: 16px;
  background-color: var(--black-color);
  color: var(--white-color);
  /* width: 71px; */
  padding: 4px 73px;
  height: 43px;
}

.contact-page-form .bride-buttontwo:hover {
  background-color: transparent;
  border: 1px solid var(--black-color);
  color: var(--black-color);
}

.contact-connection-box span {
  margin-right: 40px;
}

.contact-icon {
  position: relative;
}

.contact-icon::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -17px;
  width: 19px;
  height: 60px;
  border-right: 1px solid var(--black-color);
}

.contact-connection-box h6 {
  font-size: 18px;
  margin-bottom: 0;
}

.contact-connection-box p {
  font-size: 16px;
}

section.contact-connection {
  padding: 10rem 0 3rem 0;
}

#inputState option {
  color: #b8a358;
  padding: 20px;
}

.contact-icon i {
  font-size: 27px;
  padding-top: 20px;
}

.options li:hover {
  background-color: lightblue;
  /* Hover color */
}

.post-deatails {
  padding: 3rem 0;
}

.post-list-box {
  display: flex;
  justify-content: center;
}

.post-tab {
  padding: 2rem 0 0 0;
}

.post-list-box li {
  margin-right: 30px;
  font-size: 12px;
}

.post-list-box .dropbtn i {
  font-size: 12px;
}

.post1 {
  border: 1px solid #dadce0;
  padding-bottom: 71px;
}

.post1 img {
  width: 100%;
}

.post-img {
  position: relative;
}

.post-img-icon {
  position: absolute;
  top: 13px;
  left: 13px;
  right: 8px;
  opacity: 0;
  transition: all 0.5s;
}

.post-img:hover .post-img-icon {
  opacity: 1;
}

.red {
  background-color: red;
  color: var(--white-color);
  padding: 6px 6px;
  border-radius: 7px;
}

.post-icon {
  background-color: var(--white-color);
  color: var(--black-color) !important;
  border-radius: 50%;
  padding: 6px 10px;
}

.post1-list {
  margin-top: 56px;
}

.post-list1 h3 {
  font-size: 39px;
  padding: 28px 0 10px;
}

.post-list1 p {
  margin-bottom: 27px;
  margin-top: 20px;
}

.red i {
  margin-right: 5px;
}

.circle i {
  font-size: 8px;
  margin-right: 19px;
  display: flex;
  margin-top: 7px;
}

.circle li {
  display: flex;
  margin-bottom: 10px;
  margin-right: 0;
  font-size: 14px;
}

.circle li strong {
  margin-right: 10px;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 33%;
  padding: 2px;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.comment-sec a {
  width: 100%;
  display: flex;
  border: 1px solid #000;
  padding: 15px;
}

.post2 .modal-body {
  text-align: center;
}

.post2 h5#exampleModalLabel {
  font-size: 39px;
  font-family: var(--heading-font);
}

.post2 .modal-body p {
  margin-bottom: 10px;
}

.post2 .google {
  border: 1px solid #dadce0;
  padding: 10px 76px;
  display: inline-block;
}

.post2 .google img {
  position: relative;
  left: -59px;
}

.post2 .btn {
  width: 100%;
  background-color: transparent;
  color: #000;
  border: 1px solid #dadce0;
  border-radius: 0;
  display: flex;
  padding: 15px;
}

.post2 .facebook {
  border: 1px solid #167ee6;
  padding: 10px 66px;
  display: inline-block;
  background-color: #167ee6;
  margin-top: 23px;
}

.post2 .facebook i {
  position: relative;
  left: -47px;
  font-size: 25px;
  color: var(--white-color);
}

.post2 .facebook a {
  color: var(--white-color);
}

.icon-wrp {
  background: #fff;
  position: relative;
  margin-top: 12px;
  font-size: 18px;
}

.icon-wrp::after {
  position: absolute;
  content: "";
  left: 54px;
  background-color: #dadce0;
  width: 134px;
  height: 1px;
  top: 14px;
}

.icon-wrp::before {
  position: absolute;
  content: "";
  right: 54px;
  background-color: #dadce0;
  width: 134px;
  height: 1px;
  top: 14px;
}

.post2 .post-email {
  border: 1px solid #dadce0;
  padding: 10px 95px;
  display: inline-block;
  background-color: transparent;
  margin-top: 23px;
  color: var(--white-color);
}

.post2 .modal-content {
  padding: 21px 21px 73px 21px;
}

.post2 {
  border: 1px solid #dadce0;
  margin-top: 35px;
  padding: 28px 0;
}

.post2 .model-home {
  margin-top: 33px;
}

.post1 .bride-buttonone {
  border-radius: 0;
  font-size: 14px;
  padding: 6px 16px;
  height: 44px;
}

.post1 .bride-buttonone:hover {
  border: 1px solid var(--black-color);
  color: var(--black-color);
}

.post1 .beauty-button {
  margin: 108px 0 44px;
}

.post-location {
  text-decoration: underline;
  font-size: 23px;
  color: var(--black-color) !important;
}

.post-wrp2 {
  text-decoration: underline;
  font-size: 28px;
}

.post-wrp {
  text-decoration: underline;
}

.post1 .name {
  font-size: 12px;
}

.head-list li {
  margin-right: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.head-list i {
  font-size: 4px;
  margin-right: 5px;
  /* display: flex; */
  margin-top: 0;
}

.menu {
  background-color: #333;
  padding: 10px 0;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.menu ul li {
  display: inline-block;
  position: relative;
}

.menu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
}

.menu ul li a:hover {
  background-color: #555;
}

.dropbtn {
  color: var(--black-color);
  background-color: transparent;
  font-size: 12px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffffc4;
  min-width: 144px;
  overflow: hidden;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  height: 394px;
  padding: 10px 0 10px 0;
  margin-top: 6px;
  z-index: 999;
}

.post-list-box li a:hover {
  color: var(--brown-color);
}

.post-tab-list {
  display: flex;
  justify-content: space-between;
}

.dropdown-content li {
  border-bottom: 1px solid #dadce0;
  width: 100%;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.post-page-section-list .gown-text2 p {
  font-size: 25px !important;
  padding-bottom: 2rem;
  font-weight: 600;
}

.post-page-section-list .gown-text2 {
  text-align: left;
  border: 1px solid #00000029;
  padding: 35px 13px;
  height: 218px;
}

.post-page-section-list h2 {
  margin-bottom: 22px;
  font-size: 62px;
  font-family: var(--default-font);
}

.name2 {
  text-decoration: underline;
  font-size: 15px;
}

.post-social nav a {
  margin-right: 24px;
  color: var(--black-color) !important;
}

.post-deatails2 h4 {
  font-family: var(--heading-font);
  margin: 20px 0;
  font-weight: 600;
}

.gifting-page .gown-text2 p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 400;
  font-size: 19px !important;
  padding-bottom: 0 !important;
}

.gifting-page .gown-text2 {
  height: 384px;
}

.gifting-page .gown-text2 h5 a {
  background: var(--black-color);
  display: inline;
  color: var(--white-color);
  padding: 7px 23px;
  font-size: 14px;
}

.gifting-list {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.share-box {
  position: absolute;
  left: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px #cdc7c7;
  padding-bottom: 0 !important;
  padding: 0px 0;
  width: 155px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 38px;
  opacity: 0;
  color: var(--black-color) !important;
}

.gifting-list:hover .share-box {
  opacity: 1;
}

.share-box i {
  margin-right: 10px;
}

.gifting-page h3 {
  margin: 14px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #000 !important;
}

.living {
  padding: 10rem 0;
}

.sign-in-button a {
  border: 1px solid;
  padding: 9px 24px;
  margin-left: 37px;
}

.post-tab-list .search-input {
  background-color: #fafafa;
}

.post-tab-wrp .post-list-box li {
  font-family: var(--default-font);
  font-size: 26px;
  font-weight: 600;
}

.post-tab-wrp .dropbtn {
  font-family: var(--default-font);
  font-size: 26px;
  font-weight: 600;
}

.post-tab-wrp .dropbtn:hover {
  color: var(--brown-color);
}

.fashion-page .col-md-2 {
  width: 20%;
}

.post-tab-wrp .dropbtn i {
  font-size: 15px;
}

.post-tab-wrp {
  background-color: #fafafa;
  padding-bottom: 2rem;
}

.box-img {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  /* padding: 218px 20px; */
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 26px 28px;
  color: #fff;
  z-index: 1;
}

.box-img a {
  position: relative;
  color: #fff;
  z-index: 1;
}

.box-img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.51);
}

.box-img .share-box {
  position: absolute;
  left: -169px;
}

.box-img h5 {
  background-color: var(--black-color);
  display: inline;
  padding: 10px;
  font-size: 14px;
}

.box-img h3 {
  padding-top: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.recent-post {
  padding: 2rem 0;
}

.recent-post-box {
  margin-bottom: 22px;
}

.brand-slider-page {
  border: 1px solid #000;
  margin: 113px 0;
}

.brand-slider-page .item {
  padding: 0 55px;
}

.brand-slider-page .owl-prev {
  position: absolute;
  top: 40%;
  left: 14px;
}

.brand-slider-page .owl-next {
  position: absolute;
  top: 40%;
  right: 17px;
}

.brand-slider-page .owl-next i {
  font-size: 40px;
}

.brand-slider-page .owl-prev i {
  font-size: 40px;
}

.brand-join-page {
  padding: 5rem 0 2rem;
}

.brand-join-page .owl-item-text {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
}

.brand-join-page .brand-slide-name {
  margin-left: 42px;
}

.brand-join-page .owl-item-text span {
  margin-bottom: 2px;
  font-size: 10px;
  /* margin-top: 4px; */
}

.brand-join-page .owl-item-text small {
  font-size: 10px;
  margin-top: 10px;
}

.brand-join-page .owl-item-text i {
  margin-left: 9px;
  margin-right: 9px;
}

.brand-page {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 758px;
  padding: 100px 0 0 0;
  /* margin-top: 37px; */
}

.brand-banner-text {
  margin-top: -8rem;
}

.brand-banner-text h2 {
  font-size: 35px;
}

.join-page-text h3 {
  font-family: var(--default-font);
  font-size: 48px;
}

.brand-join-image .text {
  margin-left: 15rem;
  font-size: 12px;
  text-decoration: underline;
}

.brand-join-button ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 58px;
}

.brand-join-button ul a {
  background-color: var(--black-color);
  color: var(--white-color);
  width: 68%;
  display: inline-flex;
  justify-content: center;
  font-size: 19px;
  height: 106px;
  align-items: center;
  position: relative;
  transition: all 0.5s;
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

.brand-join-button ul a:hover {
  background-color: transparent;
  color: var(--black-color);
}

.brand-join-button ul li {
  margin-bottom: 20px;
}

.brand-join-button ul a::after {
  position: absolute;
  content: "";
  /* background-color: var(--black-color); */
  width: calc(100% + 9px);
  height: calc(100% + 8px);
  top: -4px;
  border: 1px solid var;
  border: 1px solid var(--black-color);
  left: -4px;
  right: 0;
  margin: 0 auto;
}

.join {
  background-color: #4a454a;
  padding: 80px 0;
  color: var(--white-color);
}

.join h3 {
  font-size: 68px;
}

.join-text {
  margin-top: 12px;
}

.join-text hr {
  width: 14%;
  opacity: 1;
}

.join-text span a {
  color: var(--white-color);
  font-size: 44px;
  font-weight: 600;
}

.brand-icon img {
  border: 1px solid var(--black-color);
  border-radius: 50%;
  padding: 7px 0;
  width: auto;
  height: 150px;
  object-fit: cover;
}

.brand-icon h4 {
  font-size: 19px;
  font-family: var(--heading-font);
  letter-spacing: 3px;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
}

.brand-icon {
  padding: 50px 0;
}

.brand-icon .col-md-2 {
  width: 17.666667%;
  margin-bottom: 26px;
  text-align: center;
}

.instagram .col-md-2 {
  margin-bottom: 20px;
}

.venue-img {
  background-color: #fafafa;
}

.plan {
  background-color: #fafafa;
}

.venue-plan {
  background-color: var(--white-color);
  padding: 3rem 0;
}

.plan h3 {
  text-align: center;
}

.venue-img img {
  width: 100%;
}

.price-list {
  text-align: center;
  background-color: var(--white-color);
  box-shadow: 0 0 10px #0000006e;
  padding: 50px;
  height: 100%;
}

.plan .row>* {
  padding-right: calc(var(--bs-gutter-x) * 0.8);
  padding-left: calc(var(--bs-gutter-x) * 0.8);
}

.price-list li {
  margin-bottom: 21px;
  font-size: 12px;
}

.price-list li a {
  background-color: var(--black-color);
  color: #fff;
  font-size: 15px;
  width: 60%;
  display: inline-flex;
  height: 45px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.price-list li h3 {
  font-size: 57px;
}

.price-list2 {
  margin-top: 4rem;
}

.price--number {
  font-size: 58px;
  font-weight: 600;
  margin-right: 11px;
  font-family: var(--heading-font);
}

.price {
  display: flex;
  justify-content: center;
  margin-bottom: -19px;
}

.price--dolar {
  font-size: 1.1rem;
  margin-top: -7px;
  font-weight: 500;
  margin-right: 10px;
  font-family: var(--heading-font);
}

.price-list h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 30px;
}

.venue-plan h3 {
  font-size: 39px;
}

.venu-plan2 {
  padding-top: 1rem;
}

.plan-page {
  background-color: #fafafa;
}

.plan-page h5 {
  font-size: 14px;
}

.insta-img {
  position: relative;
}

.insta-img span {
  position: absolute;
  right: 6px;
  top: 5px;
  background: #0000009e;
  color: #fff;
  padding: 3px 10px;
}

.brand-join-page .owl-item-text small a {
  color: var(--light-pink);
  font-size: 14px;
}

.gifting-page img {
  height: 408px !important;
  object-fit: cover;
}

.grid-item {
  position: relative;
}

.grid-item .post-icon {
  position: absolute;
  top: 9px;
  right: 13px;
  opacity: 0;
  transition: 0.5s ease-in;
}

.grid-item:hover .post-icon {
  opacity: 1;
}

.contact-text h4 {
  font-family: var(--heading-font);
}

.contact-wrp {
  text-decoration: underline;
  color: var(--black-color) !important;
}

.contact-page-form .input-group {
  align-items: center;
}

.contact-page-form #datepicker-input {
  cursor: pointer;
}

.datepicker-dropdown {
  border: 1px solid #000 !important;
  max-width: 336px !important;
  width: 100% !important;
  /* height: 100%; */
  border-radius: 0;
  padding: 25px 19px 24px;
}

.datepicker td,
.datepicker th {
  text-align: center;
  width: 48px;
  height: 48px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}

.datepicker table tr td.day.focused,
.datepicker table tr td.day:hover {
  background: var(--nude);
  cursor: pointer;
  color: var(--white-color);
}

.datepicker table tr td.active {
  background-image: linear-gradient(to bottom, #b87333, #b87333);
}

.table-condensed thead tr:nth-last-child(2) {
  border-bottom: 1px solid var(--black-color);
}

/* .datepicker table tr td.active {
    background: var(--black-color) !important;
    border-radius: 50%;
    color: var(--white-color);
} */

.editor {
  padding: 4rem 0;
}

.video-part video {
  width: 100%;
}

.editor .blog-text {
  margin-left: 26px;
}

.editor .blog-sec h2 {
  padding: 0 0 20px;
  font-size: 42px;
}

.editor .gown-box {
  border: 1px solid var(--black-color);
  margin-bottom: 2rem;
  height: 100%;
  max-height: 95%;
}

.editor .gown-text2 {
  padding: 26px 16px 0;
}

.editor .video-text {
  color: var(--white-color);
  background-color: var(--black-color);
  padding: 13px 20px 41px;
}

.editor .video-part {
  background-color: var(--black-color);
  padding: 0 59px 24px;
}

.video-text p {
  font-family: unset;
  font-weight: 400;
  font-size: 20px;
}

.video-text h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 33px;
  padding: 20px 0;
}

.video-text .beauty-button {
  display: flex;
  justify-content: center;
  margin-top: 53px;
}

.video-text .bride-buttonone {
  background-color: var(--white-color);
  color: var(--black-color);
  font-weight: 600;
}

.editor .gown-img img {
  height: 463px;
  object-fit: cover;
}

.trend h2 {
  font-size: 42px;
  position: relative;
}

.trend h2::after {
  position: absolute;
  content: "";
  border-bottom: 9px dotted #fdf6f4;
  right: 0;
  bottom: 11px;
  width: 370px;
  height: 230px;
}

.editor .blog-sec h2 {
  position: relative;
}

.editor .blog-sec h2::after {
  position: absolute;
  content: "";
  border-bottom: 9px dotted #fdf6f4;
  right: 0;
  bottom: 31px;
  width: 431px;
  height: 230px;
}

.trend p {
  margin: 2rem 0;
}

.editor .blog-img {
  height: unset;
}

.trend {
  margin-top: 20px;
}

.editor-text {
  margin: 0;
  text-decoration: underline;
}

.editor-icon nav i {
  font-size: 38px;
  color: var(--black-color) !important;
}

.editor-icon {
  margin-top: 27px;
}

.editor-icon nav a {
  margin-left: 18px;
}

.editor-icon hr {
  color: var(--black-color);
  opacity: 1;
}

.editor-sec h2 {
  position: relative;
  font-size: 42px;
  font-family: unset;
}

.editor-sec h2::after {
  position: absolute;
  content: "";
  border-bottom: 9px dotted #fdf6f4;
  right: 0;
  bottom: 16px;
  width: 528px;
  height: 230px;
}

.editor-sec h2::before {
  position: absolute;
  content: "";
  border-bottom: 9px dotted #fdf6f4;
  left: 0;
  bottom: 16px;
  width: 540px;
  height: 230px;
}

.editor-sec .bride-buttonone {
  padding: 8px 55px;
  font-size: 14px;
  height: 49px;
  border: 1px solid var(--black-color);
  border-radius: 0;
  font-size: 17px;
  outline: 1px solid #000;
  outline-offset: 4px;
  font-weight: 500;
  letter-spacing: 1px;
}

.mail-form input {
  width: calc(100% - 233px);
  height: 55px;
  border-radius: 0;
  margin: 34px 0;
  border: 3px solid;
}

.mail-form span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mail-form span a {
  padding: 13px 15px;
  font-size: 14px;
  height: 53px;
  border-radius: 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  background-color: var(--black-color);
  color: var(--white-color);
  margin-left: 10px;
}

.mail-form p {
  font-size: 27px;
}

.mail-text {
  padding-bottom: 5rem;
}

.checkout-page {
  margin-top: 50px;
}

.payment-form ul li {
  margin-bottom: 41px;
  font-size: 26px;
  /* opacity: 0.6; */
}

.payment-form .gift-button {
  margin-top: 25px;
}

.payment-form .gift-button .bride-buttonone {
  border-radius: 0;
  width: 259px;
  font-size: 14px;
  padding: 2px 34px;
  height: 39px;
}

.payment-form .gift-button .bride-buttonone:hover {
  background-color: var(--black-color);
  border-radius: 0;
  width: 259px;
  color: var(--white-color);
}

.payment-form .gift-button .bride-buttontwo {
  border-radius: 0;
  width: 259px;
  border: 1px solid var(--black-color);
  font-size: 14px;
  padding: 2px 34px;
  height: 39px;
}

.payment-form .gift-button .bride-buttontwo:hover {
  border-radius: 0;
  width: 259px;
  border: 1px solid var(--black-color);
}

.order {
  border: 1px solid;
  padding: 29px 20px 0;
}

.checkout {
  padding-bottom: 40px;
  background-color: #fafafa;
}

.checkout .col-md-11 {
  background-color: var(--white-color);
}

.order li p {
  font-size: 15px;
  margin-bottom: 6px;
  margin-top: 3px;
}

.order li span {
  margin-right: 10px;
}

.order li {
  margin-bottom: 26px;
  font-size: 13px;
}

.order li .d-flex .justify-content-between li {
  margin-bottom: 10px;
}

.order li ul li {
  margin-bottom: 0;
  font-size: 13px;
}

.order li ul li h6 {
  font-size: 19px;
  font-weight: 400;
}

.order li .coupon {
  text-decoration: underline;
  color: var(--black-color);
}

.checkout-text {
  font-size: 15px;
  margin-top: 17px;
  margin-bottom: 15px;
}

.checkout-text span {
  margin-right: 10px;
}

.checkout-page h4 {
  margin-bottom: 34px;
}

.checkout-line {
  margin-bottom: 39px;
}

.payment-form ul li h4 span {
  margin-right: 23px;
}

.payment-color {
  color: #b3afa6;
  font-weight: 400;
}

.payment-page {
  background-color: #fafafa;
}

.venu-page-gallery {
  padding: 2rem 0;
  background-color: #fafafa;
}

.venu-page-content {
  padding: 22px 0;
}

.venu-page-text h4 {
  font-family: var(--default-font);
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 0;
}

.venu-page-text p {
  margin-top: -15px;
  font-weight: 600;
}

.venue-price img {
  width: auto;
  height: 85px;
}

.venue-price strong {
  font-size: 24px;
}

.venue-price .quote a {
  color: #e4b43c;
  transition: 0.5s all;
}

.venu-page-start-price {
  transition: 0.5s all;
}

.venu-page-start-price:hover {
  letter-spacing: 2px;
  color: var(--black-color);
  text-decoration: underline;
}

.venue-price .quote a:hover {
  letter-spacing: 2px;
  color: var(--black-color);
  text-decoration: underline;
}

.venue-rating nav i {
  color: #e3bf16;
  font-size: 21px;
}

.venue-rating {
  margin-top: 13px;
}

.venue-rating strong {
  font-size: 25px;
}

.venu-page-content .col-md-4,
.venu-page-content .col-md-8 {
  margin-top: 25px;
}

.venu-page-content .col-md-4 p {
  font-size: 19px;
}

.venu-page-content .col-md-8 img {
  background-color: var(--white-color);
  padding: 10px 11px 42px;
  box-shadow: 0 0 10px #00000054;
}

.venu-page-content .bride-buttonone {
  padding: 16px 78px;
  font-size: 14px;
  height: 64px;
  border: 1px solid var(--black-color);
  border-radius: 0;
  font-size: 17px;
  outline: 1px solid #000;
  outline-offset: 4px;
  letter-spacing: 2px;
}

.facility-text {
  background-color: #fbf6f3;
  padding: 79px 28px 48px;
  text-align: center;
  margin-top: -53px;
  min-height: 932px;
}

.facility-img-box:hover h4 {
  margin-top: -20px;
}

.facility-img-box1:hover img {
  content: url(../images/hover-img1.webp);
  /* Use 'content' property for image replacement */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.facility-img-box2:hover img {
  content: url(../images/facilityimg3.webp);
  /* Use 'content' property for image replacement */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.facility-img-box3:hover img {
  content: url(../images/love-img.webp);
  /* Use 'content' property for image replacement */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.facility-img-box img {
  padding: 0 37px;
  width: 100%;
  height: 223px;
  object-fit: cover;
}

.facility-box.row>* {
  padding-right: calc(var(--bs-gutter-x) * 3);
  padding-left: calc(var(--bs-gutter-x) * 3);
  margin-top: var(--bs-gutter-y);
}

.facility-box .col-md-3 {
  width: 33%;
}

.facility {
  padding: 3rem 0;
}

.facility-text h4 {
  padding: 32px 0 10px;
  font-weight: 600;
  font-size: 28px;
  transition: 0.5s all;
}

.venu-menu {
  background-color: #fbfbfb;
  padding-top: 25px;
  padding-bottom: 24px;
}

.venu-menu .col-md-4 {
  text-align: center;
}

.venu-menu .bride-buttonone {
  border-radius: 0;
  width: 274px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
}

.venu-menu video {
  border-radius: 10px;
}

.venu-menu .bride-buttonone::after {
  position: absolute;
  content: "";
  border: 2px solid var(--black-color);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  left: -3px;
  right: 0;
  margin: 0 auto;
  top: -3px;
  bottom: 0;
}

.venu-menu .bride-button {
  margin-top: 26px;
}

.video-waiver-page .video-part {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.video-waiver-page {
  position: relative;
}

.video-form {
  background: #000;
  color: #fff;
  padding: 40px 39px 103px;
  border-radius: 54px;
  margin: 28px 0 341px;
}

.video-text {
  margin-top: 0;
}

.video-text h5 a {
  font-size: 59px;
}

.video-form h4 {
  font-size: 42px;
  padding-bottom: 12px;
}

.video-form .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--white-color);
  border-radius: 0;
  color: var(--white-color);
  padding-left: 0;
}

.video-form .form-check-label {
  font-size: 15px;
  font-family: var(--heading-font);
}

.video-form .form-check-input[type="checkbox"] {
  border-radius: 1.25em;
  margin-top: 25px;
  background-color: transparent;
  border: 1px solid #fff;
}

.upload {
  font-family: var(--default-font);
}

#signature {
  border: 0;
  margin-bottom: 17px;
  border-bottom: 1px solid #fff;
  position: relative;
}

#signature::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--white-color);
  width: 10px;
  height: 1px;
}

.clear-button {
  background-color: transparent;
  color: #eeeeee61;
  border: 0;
  text-align: end;
}

.form-submit {
  background-color: transparent;
  color: var(--white-color) !important;
  font-family: var(--heading-font);
  font-style: italic;
  border: 0;
  font-size: 26px;
  transition: all 0.5s;
}

.form-submit:hover {
  background-color: transparent;
  border: 1px solid var(--white-color);
  border-radius: 24px;
  box-shadow: 0;
}

.video-form-wrp .robot {
  font-size: 14px;
  color: var(--black-color);
}

.box-container {
  display: flex;
  background-color: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  /* width: 235px; */
  align-items: center;
  padding: 10px 0px 10px 0px;
  height: 60px;
  justify-content: space-around;
}

.logo-text p {
  color: var(--black-color);
  font-size: 9px;
}

.box-container input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 19px;
  border: 2px solid #c1c1c1;
  margin: 0px 14px 0px 14px;
}

.box-container input[type="checkbox"]:checked::before {
  content: url(https://img.icons8.com/?size=20&id=27&format=png&color=1e5180);
  display: block;
  line-height: 20px;
  padding: 0.05rem 0.6rem 0rem 0.05em;
}

.box-container .capcha-logo {
  display: block;
  /* margin-left: 47%; */
  text-align: center;
}

.logo-text {
  text-align: center;
  font-size: 9px;
}

.logo-text-tos {
  display: block;
  text-align: center;
  font-size: 7px;
  color: #000;
}

.signature-box {
  position: relative;
}

.canvas-line {
  /* position: absolute; */
  opacity: 1;
  top: 84px;
  z-index: 0;
  margin-top: -42px;
  width: 60%;
  margin-left: 59px;
}

.main-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}

.upload-main-wrapper {
  width: 169px;
  margin: 0 auto;
}

#file-upload-name {
  margin: 4px 0 0 0;
  font-size: 12px;
}

.upload-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--white-color);
  padding: 8px 22px;
  border-radius: 0;
  overflow: hidden;
  transition: 0.2s linear all;
  color: var(--white-color);
}

.upload-wrapper input[type="file"] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}

.upload-wrapper>svg {
  width: 50px;
  height: auto;
  cursor: pointer;
}

.upload-wrapper.success>svg {
  transform: translateX(-200px);
}

.upload-wrapper.uploaded {
  transition: 0.2s linear all;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  text-align: center;
}

.upload-wrapper .file-upload-text {
  position: absolute;
  left: 31px;
  opacity: 1;
  visibility: visible;
  transition: 0.2s linear all;
}

.upload-wrapper.uploaded .file-upload-text {
  text-indent: -999px;
  margin: 0;
}

.file-success-text {
  opacity: 0;
  transition: 0.2s linear all;
  visibility: hidden;
  transform: translateX(200px);
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-success-text svg {
  width: 25px;
  height: auto;
}

.file-success-text span {
  margin-left: 15px;
}

.upload-wrapper.success .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.upload-wrapper.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.upload-wrapper.success.uploaded .file-success-text span {
  display: none;
}

.upload-wrapper .file-success-text circle {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
  transition-delay: 1.4s;
}

.upload-wrapper.success .file-success-text circle {
  stroke-dashoffset: 0;
}

.upload-wrapper .file-success-text polyline {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
  transition-delay: 2s;
}

.upload-wrapper.success .file-success-text polyline {
  stroke-dashoffset: 0;
}

.upload-wrapper.success .file-upload-text {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.gown-list .gown-box .owl-nav {
  display: none;
}

.gown-list .gown-box .item {
  position: relative;
}

.home-grown_icon {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 0;
  right: 0;
  padding: 10px;
}

.home-grown_icon i {
  background-color: var(--brown-color);
  padding: 10px;
  height: 100%;
  border-radius: 0 0 0 32px;
}

.home-grown_icon p {
  font-size: 10px;
}

.black-button {
  border-radius: 0;
  border: 1px solid var(--black-color);
}

.black-button:hover {
  border: 1px solid var(--black-color) !important;
  color: var(--black-color);
}

.white-button {
  border-radius: 0;
  font-weight: 600;
}

/* discover-page */
.discover-inner_page {
  padding: 6rem 0 1rem;
}

.discover_content h2 {
  width: 100%;
  font-size: 89px;
  max-width: 500px;
}

.discover_content p {
  width: 100%;
  max-width: 284px;
  margin-left: 89px;
  padding: 25px 0;
}

.discover_img {
  position: relative;
}

.discover-real_wedding {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
}

.discover_content {
  margin-left: 104px;
}

.discover_content .beauty-button {
  margin-left: 89px;
}

.discover_img img {
  min-height: 769px;
  object-fit: cover;
}

.discover-list .gown-text2 {
  border: 0;
  height: unset;
  color: var(--black-color) !important;
}

.discover-list .gown-text2 p {
  font-size: 19px !important;
  padding-bottom: 2rem;
  font-weight: 400;
}

.discover-list .gown-text2 h5 {
  margin: 25px 0;
  font-size: 18px;
  color: var(--pink) !important;
}

.discover-directory-_wrp {
  background-color: #f4f4f4;
  padding: 51px 68px;
}

.discover_directory {
  position: relative;
}

.discover_directory::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #f4f4f4;
  height: 100%;
  width: 14%;
}

.discover-list {
  padding-top: 10px !important;
}

.discover-weeding {
  padding: 5rem 0 0 0;
}

.head-title {
  font-size: 56px;
}

.discover-weeding-head {
  margin-bottom: 25px;
}

.discover-directory2.discover_directory::after {
  left: 0;
  right: unset;
}

.discover-join {
  background-color: #f4f4f4;
  color: var(--black-color);
}

.discover-join h4 {
  font-family: var(--heading-font);
  margin-bottom: 25px;
}

.discover-join .product-icon i {
  font-size: 25px;
}

.discover-join .product-icon a {
  margin-right: 13px;
}

.discover-form span .form-control {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
  background: transparent;
  height: 49px;
  padding: 0 !important;
  transition: all 0.2s;
}

.discover-form span input::placeholder {
  font-size: 18px;
  color: var(--black-color);
}

.discover-join .join-text p {
  margin: 25px 0;
}

.discover-form span {
  margin-right: 18px;
}

.head-title2 {
  font-size: 41px;
}

.personalized-page {
  padding: 5rem 0;
}

.personalized-page span {
  background-color: var(--black-color);
  width: 8px;
  height: 8px;
  display: inline-flex;
  margin-right: 8px;
  border-radius: 50%;
}

.personalized-page ul {
  margin: 25px 0;
}

.personalized-page ul li {
  margin-bottom: 10px;
}

.wedding-website {
  padding: 5rem 0;
  overflow: hidden;
}

.wedding-website_menu .swiper-slide {
  text-align: center;
  border: 1px solid #0000004d;
  border-radius: 11px;
  padding: 7px 1px;
  margin-top: 24px;
}

.wedding-website_menu .active {
  border: 1px solid var(--black-color);
}

.website-img {
  margin-top: 25px;
  position: relative;
  margin-bottom: 25px;
}

.website-img img {
  margin-bottom: 10px;
}

.website-img p a {
  text-decoration: underline;
  color: #000 !important;
}

.personalized-help {
  background-color: #e3bc9a21;
}

/* .website-img img {
    border-radius: 10px;
    transition: all 0.5s;

}

.website-img:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
} */

/* .website-img span {
    opacity: 0;
    visibility: hidden;
}

.website-img:hover span {
    opacity: 1;
    visibility: visible;
    position: absolute;
    bottom: -52px;
    left: 0;
    text-align: center;
    right: 0;
    margin: 0 auto;
    color: var(--black-color);
    font-family: var(--heading-font);
    color: var(--sand);
    font-size: 27px;
    font-weight: 600;
} */

.personalized-page_list {
  padding-bottom: 5rem;
  overflow: hidden;
}

.personalized-page_listimage img {
  height: 392px;
  object-fit: cover;
  border-radius: 10px;
}

.personalized-page_listbox {
  margin-top: 55px;
  border-top: 1px solid var(--black-color);
  padding-left: 17px;
}

.personalized-page_listimage {
  border-right: 1px solid var(--black-color);
  margin-left: 11px;
  padding: 39px 39px 43px 0;
}

.personalized-page_listbox2 {
  margin-top: 0 !important;
}

.personalized-page_listbox2 .personalized-page_listtext {
  border-right: 1px solid var(--black-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.personalized-page_listbox2 .personalized-page_listimage {
  border: 0;
}

.personalized-page_listbox2 hr {
  opacity: 1;
}

.personalized-testimonial {
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial-content {
  background-color: rgb(194 178 128 / 32%);
  padding: 45px 31px;
  border-radius: 10px;
}

.personalized-testimonial .personalized-page_listtext {
  padding: 39px 24px 43px 17px;
}

.personalized-testimonial hr {
  opacity: 1;
}

.personalized-testimonial .reviews-group {
  margin: 25px 0;
}

/* article */
.articleLeft {
  background: #f8f8f8;
  padding: 30px;
  /* position: fixed;
    top: 100px; */
}

.articleLeft ul {
  margin-top: 30px;
  border-left: #ddd 1px solid;
}

.articleLeft ul li a {
  margin-bottom: 15px;
  display: block;
  padding: 0 0 0 20px;
  position: relative;
  color: #000;
}

.articleLeft ul li a::before {
  position: absolute;
  top: 10px;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  content: "";
}

.articleLeft ul li a:hover,
.articleLeft ul li a.active {
  color: var(--pink) !important;
}

.articleLeft ul li a:hover::before,
.articleLeft ul li a.active::before {
  background: var(--black-color) !important;
}

.article h2 {
  font-size: 50px;
}

.articleRight li {
  padding-right: 15px;
}

.box2 {
  background: #f2f2f2;
  padding: 30px;
}

.box2 a {
  text-decoration: underline;
}

.articleRight a {
  color: var(--pink);
}

.pl-3 {
  padding-left: 2rem;
}

.lookfor p {
  margin-top: 15px;
}

.accordion-button:not(.collapsed) {
  color: #333;
  background-color: #ddd;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button {
  font-size: 20px;
}

.stick {
  position: fixed;
  width: 18.7%;
  top: 15%;
}

.abs {
  position: absolute;
  bottom: 0px;
  width: 92.5%;
}

.footertop {
  height: 60px;
}

.mt-10 {
  padding-top: 6.5rem;
}

.commonClass h3 {
  margin-bottom: 20px;
  font-size: 50px;
}

.gallery-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 12px 0;
}

.gallery-main {
  width: 86%;
  /* height: 300px; */
  /* box-shadow: 0 50px 75px 50px rgba(30, 30, 30, 0.18); */
  border: 1px solid #e9e9e9;
}

.gallery-thumbs .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto !important;
  position: relative;
  transition-property: transform;
  display: block;
  margin: 10px 0;
}

.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
  position: absolute;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  height: 52px;
  width: 51px;
  color: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 0 7px #000000b0;
}

.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
  font-size: 12px;
}

.gallery-main .swiper-button-prev {
  left: 118px;
  border-right: 1px solid #e9e9e9;
  top: 50%;
}

.gallery-main .swiper-button-next {
  top: 50%;
  right: 10px;
}

.gallery-title {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Epilogue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.swiper-slide-active .gallery-title {
  -webkit-animation: slide-in 0.3s ease-in both;
  animation: slide-in 0.3s ease-in both;
}

.gallery-thumbs {
  order: -1;
  width: 100px;
  height: 300px;
  margin-right: 15px;
  padding-left: 15px;
}

.gallery-thumbs .swiper-slide img {
  transition: 0.3s;
}

.gallery-thumbs .swiper-slide-active {}

.gallery-thumbs .swiper-slide {
  opacity: 0.5;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

/* .gallery-thumbs .swiper-slide-thumb-active img {
    margin-left: -15px;
  } */
.gallery-main .swiper-slide img,
.gallery-thumbs img {
  width: 100%;
}

.gallery-main .swiper-slide img {
  border-radius: 10px;
  height: 773px;
  object-fit: contain;
}

.gallery-main .swiper-slide {}

.product-page_single-icon {
  position: absolute;
  top: -11px;
  left: 8px;
  right: 9px;
  display: flex;
  justify-content: space-between;
}

.etsy-content {
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 19px;
  color: var(--white-color);
  display: flex;
  font-size: 14px;
  justify-content: center;
  align-items: center;
}

.etsy-content i {
  margin-right: 6px;
  margin-top: -4px;
}

.product-heart_icon {
  background-color: var(--white-color);
  padding: 4px 10px;
  box-shadow: 0 0 10px #00000040;
  border-radius: 50%;
  font-size: 21px;
}

.product-review-section {
  padding: 2rem 0;
}

.review-tab a {
  margin-right: 47px;
  margin-bottom: 17px;
  font-size: 18px;
  position: relative;
  color: var(--black-color) !important;
}

.review-tab .review-number {
  background-color: var(--light-pink);
  margin-left: 10px;
  padding: 10px;
  border-radius: 26px;
  font-weight: 600;
}

.review-tab .active::after {
  border-bottom: 3px solid var(--black-color);
  position: absolute;
  bottom: -18px;
  left: 0;
  content: "";
  width: 100%;
}

.review-tab.d-flex {
  border-bottom: 1px solid #00000047;
}

.review-select .form-select {
  width: unset;
  padding-left: 80px;
  border: 0;
  font-weight: 600;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper:hover {
  background-color: var(--light-pink);
}

.custom-select-wrapper::before {
  content: "Sort by:";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
}

/* new-product */
.product-single__reviews-item p {
  margin: 25px 0;
}

.customer-name h6 {
  margin-right: 11px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--black-color);
}

.customer-name h6 i {
  margin-right: 10px;
}

.customer-review {
  width: 100%;
  max-width: 404px;
}

.customer-review_right ul {
  margin-top: 20px;
}

.customer-review_right ul li {
  margin-bottom: 10px;
  font-size: 12px;
  gap: -3px;
  width: 100%;
  justify-content: end;
}

.customer-recommends {
  font-size: 12px;
}

span.subrating-item-number {
  padding: 0 8px;
}

.block-28 ul {
  justify-content: start !important;
}

.review-photo {
  padding: 4rem 0;
}

.review-photo_list img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.review-photo_list .swiper-button-prev:after,
.review-photo_list .swiper-button-next:after {
  background: #fff;
  font-size: 21px;
  padding: 9px 13px;
  color: #000;
  border-radius: 50%;
}

.product-acordian .accordion-body h4 {
  margin: 16px 0;
  font-family: var(--heading-font);
  font-weight: 600;
}

.product-acordian .accordion-button:not(.collapsed) {
  color: #333;
  background-color: #ddd;
  box-shadow: none;
  border: 0;
  border-radius: 20px;
}

.product-acordian .accordion-item {
  background-color: #fff;
  border: 0;
}

.product-acordian .accordion-button:hover {
  background-color: #ddd;
  box-shadow: none;
  border: 0;
  border-radius: 20px;
}

.product-acordian .black-button {
  padding: 6px 23px;
  height: 46px;
  font-size: 13px;
}

.product-acordian .accordion-body i {
  margin-right: 10px;
}

.product-acordian .materials {
  margin-top: 10px;
}

.product-acordian .accordion-body ul li {
  margin-bottom: 10px;
}

.pincode {
  margin: 20px 0;
}

.product h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  margin-top: 16px;
}

.product:hover {
  background-color: var(--white-color);
  box-shadow: 0 0 10px #000;
  padding: 8px;
  border-radius: 10px;
}

.realated-product-list li {
  margin-bottom: 21px;
  border: 1px solid #000;
  padding: 0;
  border-radius: 13px;
  transition: all 0.5s;
}

.realated-product-list li:hover {
  box-shadow: 0 0 10px #000;
}

.realated-product-list {
  margin-top: 20px;
}

.realated-product-list div {
  font-size: 12px;
  margin-left: 18px;
  margin-top: 5px;
}

.realated-product-list img {
  width: auto;
  height: 45px;
  border-radius: 10px 0 0 10px;
}

.also-like2 {
  padding: 2rem 0;
}

.product-shop-form-year {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 21px;
}

.product-shop-form-year .form-select {
  padding: 10px;
  border: 0;
  background: #fff;
  box-shadow: 0 0 4px #000000a8;
}

.month-name {
  margin-right: 15px;
}

.month-name label {
  font-size: 18px;
  font-weight: 600;
}

.date-button span a:hover i {
  padding-left: 10px;
}

.date-button span a i {
  transition: all 0.5s;
}

.product-shop img {
  height: 256px;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.product-shop-bg {
  background-color: var(--white-color);
  box-shadow: 0 0 10px #000;
  border-radius: 10px;
}

.product-shop {
  padding: 3rem 0;
}

.product-shop-form {
  padding: 21px 21px 21px 0;
}

.product-top-wedding .text {
  margin-top: 20px;
  color: var(--black-color) !important;
  font-weight: 600;
}

.product-top-wedding .text i {
  margin-left: 15px;
  transition: all 0.5s;
}

.product-top-wedding .product:hover .text i {
  padding-left: 10px;
}

.product-top-wedding .product img {
  height: 271px;
  object-fit: cover;
  border-radius: 10px;
}

.related-search {
  padding: 3rem 0;
}

.related-search_list {
  flex-wrap: wrap;
  gap: 15px;
}

.related-search_list li {
  text-align: center;
  width: 8%;
}

.related-search .text {
  font-size: 15px;
}

.related-search .text {
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0;
}

.related-search .product img {
  height: 87px;
  border-radius: 50%;
  width: 87px !important;
  object-fit: cover;
}

.explore-more .col-md-2 {
  width: 20%;
  display: flex;
  margin-top: 20px;
}

.explore-more .button {
  background-color: var(--light-pink);
  padding: 15px;
  border-radius: 27px;
  font-weight: 600;
  color: var(--black-color) !important;
}

.explore-more {
  padding: 0 0 3rem 0;
}

.purchase i {
  font-size: 44px;
  margin-right: 19px !important;
}

.easy {
  background-color: var(--sand);
  color: var(--white-color);
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
}

.easy i {
  font-size: 20px;
}

.product-acordian .black-button {
  background-color: transparent;
  color: var(--black-color) !important;
  border-radius: 20px;
}

.seller-part {
  display: flex;
  align-items: center;
}

.seller-text {
  margin-left: 19px;
}

.seller-part img {
  height: 35px;
  object-fit: cover;
}

.product-acordian .seller-part .black-button {
  background-color: transparent;
  color: var(--black-color) !important;
  border-radius: 20px;
}

.product-acordian .bride-button {
  width: 100%;
  display: inline-grid;
}

.product-categories_masonry .product .text {
  padding-top: 12px;
  text-align: start;
  font-weight: 600;
  color: var(--pink) !important;
}

.product-categories_masonry .product .text i {
  margin-left: 10px;
}

.product-categories_masonry .product img {
  border-radius: 10px;
}

.product-deatil_date li a {
  margin-left: 25px;
  border-bottom: 1px solid var(--black-color);
}

.product-detail_menu {
  justify-content: start;
}

.product-detail_menu li a {
  border-bottom: 0;
  margin-left: 0;
  font-weight: 600;
}

.product-detail_menu li a:hover {
  color: var(--pink);
}

.product-detail_menu li a i {
  margin-left: 10px;
}

.product-detail_menu li {
  margin-right: 20px;
}

.email-input {
  max-width: 441px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.email-input input {
  border-radius: 20px;
  height: 46px;
}

.product-subscribe {
  background: var(--light-pink);
  padding: 5rem 0;
}

.product-subscribe p {
  margin-bottom: 23px;
  font-weight: 600;
  font-family: var(--primary-font);
}

.email-input_button {
  position: absolute;
  top: 0px;
  right: 0px;
  border: 0;
  background: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  padding: 11px 11px;
  border-radius: 0 19px 19px 0;
}

.email-input_button:hover {
  background-color: var(--pink);
}

.product-acordian p {
  font-size: 16px;
}

.seller-text p {
  margin-bottom: 10px;
}

.seller-text-para {
  margin-top: 9px;
  margin-bottom: 16px;
}

.Seller-button:hover {
  background-color: var(--black-color);
  padding: 11px 17px;
  border-radius: 20px;
  color: var(--white-color);
}

.Seller-button {
  font-size: 14px;
  font-weight: 600;

  transition: ease-in-out 0.5s;
  padding: 11px 17px;
}

.ceremony-product .product-2 img {
  min-height: 378px;
  object-fit: cover;
}

.ceremony-product_menu {
  padding: 5rem 0;
}

.ceremony-product_menu img {
  border-radius: 50%;
  height: 162px;
  margin-bottom: 16px;
  transition: all 0.3s;
  max-width: 162px;
}

.menu-img {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-img span {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 23px;
}

.menu-img:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.menu-img:hover span {
  border-bottom: 2px solid var(--pink);
  color: var(--pink);
}

.big-day .product img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.get-started_form {
  padding: 105px 0 0 0;
  background-color: rgb(227 188 154 / 41%);
}

.get-started_form .form-control {
  height: 54px;
  border-radius: 0;
}

.get-started_form .form-control .option {
  color: #6c757d;
}

.get-started_form .form-check-label {
  font-size: 9px;
}

.get-started_form .form-check-input:checked {
  background-color: var(--pink);
  border-color: var(--pink);
}

.get-started_form .form-check-input:focus {
  border-color: var(--pink);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(184 115 51 / 48%);
}

.get-started_page {
  padding: 35px 0;
}

.get-started_form img {
  height: 100%;
  width: 100%;
}

.get-stared-logo {
  padding: 5rem 0;
}

.get-stared-logo hr {
  margin-top: 68px;
  width: calc(100% - 155px);
}

.get-started-website p {
  margin: 20px 0;
}

.get-started-website .built-website {
  color: var(--pink);
  font-weight: 600;
}

.get-started-website2 {
  padding: 5rem 0;
}

.get-started-website_text {
  max-width: 328px;
}

.get-started-bgimage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.get-started-bgimage-text {
  background-color: var(--white-color);
  padding: 87px 69px;
}

.get-started-bgimage-text img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.get-started-bgimage-text h4 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 19px;
}

.learn-more_page {
  padding: 150px 0 0 0;
}

.learn-more-content {
  background-color: rgb(194 178 128 / 44%);
  padding: 38px;
  height: 78%;
  border-radius: 24px;
}

.learn-more_form {
  background: var(--white-color);
  padding: 46px;
  border-radius: 26px;
  box-shadow: 0 0 10px #0000003d;
}

.learn-more_form .form-control {
  border: 1px solid var(--black-color);
}

.learn-more_form .form-check-input:checked {
  background-color: var(--pink);
  border-color: var(--pink);
}

.learn-more_form .form-check-input:focus {
  border-color: var(--pink);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(184 115 51 / 48%);
}

.learn-more-text h3 {
  font-size: 64px;
  padding-bottom: 31px;
}

.learn-more-text p {
  font-size: 28px;
}

.learn-more-content_img {
  width: 498px;
  height: 555px;
  object-fit: cover;
  border-radius: 27px;
}

.learn-more-content-img_box {
  position: relative;
}

.learn-more-content-img_box span {
  position: absolute;
  bottom: 49px;
  left: 0;
  background-color: var(--pink);
  padding: 11px;
  font-size: 23px;
  color: var(--white-color);
}

.learn-more-content_img2 {
  width: 100%;
  border-radius: 27px;
  height: 319px;
  object-fit: cover;
  margin-left: -57px;
}

.learn-more-content-img_box2 {
  position: relative;
}

.learn-more-content-img_box2 span {
  position: absolute;
  bottom: 49px;
  right: 0;
  background-color: var(--pink);
  padding: 11px;
  font-size: 23px;
  color: var(--white-color);
}

.counter {
  padding: 0 0 5rem 0;
}

.counter-box h3 {
  font-size: 67px;
}

.counter-box i {
  font-size: 25px;
  background: var(--pink);
  color: var(--white-color);
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 19px;
}

.wedding-pros {
  position: relative;
  padding: 5rem 0;
  margin-top: 72px;
}

.wedding-pros::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--nude);
  width: 87%;
  height: 100%;
  z-index: -1;
  height: 81%;
  border-radius: 20px;
}

.wedding-pros_img {
  margin-top: -10rem;
  border-radius: 20px;
}

.wedding-pros_text {
  position: relative;
  z-index: 1;
  background: #fff;
  width: calc(100% + 402px);
  padding: 54px;
  border-radius: 22px;
  margin-top: 160px;
  border: 1px solid #0000001f;
}

.wedding-pros_text h3 {
  font-size: 57px;
}

.business-box img {
  border-radius: 20px;
}

.business {
  padding-bottom: 5rem;
  position: relative;
}

.business-box_text {
  width: 100%;
  max-width: 531px;
  margin-left: 73px;
}

.business-box {
  position: relative;
}

.business-box::after {
  position: absolute;
  content: "";
  border: 2px solid var(--pink);
  top: 30px;
  bottom: 0;
  left: 28px;
  right: 0;
  width: calc(100% - 38px);
  height: calc(100% - 57px);
  border-radius: 23px;
}

span.side_post {
  position: absolute;
  left: 28px;
  bottom: 57px;
  background: var(--pink);
  padding: 10px;
  color: var(--white-color);
}

.weddingpro-booking {
  padding-bottom: 5rem;
}

.wedding-pro_box {
  background-color: rgb(194 178 128 / 33%);
  padding: 60px;
  border-radius: 20px;
}

.wedding-pro_box .wedding-pro_box_text p {
  margin: 25px 0 29px;
}

.wedding-pro_box img {
  border-radius: 20px;
}

.weddingpro_blog {
  padding: 0 0 5rem 0;
}

.weddingpro_blog img {
  border-radius: 20px;
}

.weddingpro_blog .content {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 25px;
  margin-top: -42px;
  position: relative;
  z-index: 1;
  /* color: #fff; */
  margin-left: 16px;
  margin-right: 20px;
}

.weddingpro_blog .content p {
  text-align: justify;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.weddingpro_blog .content h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 28px;
}

.wedding-pro_testimonial {
  padding-bottom: 5rem;
}

.wedding-pro_review {
  background-color: rgb(194 178 128 / 33%);
  padding: 124px 0;
}

.wedding-pro_review-content {
  padding: 0 126px;
}

.wedding-pro_review-content p {
  padding-bottom: 20px;
}

.wedding-pro_review-content h6 {
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 19px;
}

.wedding-pro_review img {
  border-radius: 20px;
}

.wedding-pro_review .swiper-slide {
  position: relative;
}

.wedding-pro_review .swiper-slide::after {
  position: absolute;
  content: "";
  border: 2px solid var(--pink);
  top: 30px;
  bottom: 0;
  left: 28px;
  right: 0;
  width: calc(100% - 38px);
  height: calc(100% - 57px);
  border-radius: 23px;
}

.wedding-pro_review .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 55px);
}

.wedding-pro_review .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 55px);
}

.wedding-pro_review .swiper-button-next:after,
.wedding-pro_review .swiper-button-prev:after {
  font-size: 22px;
  background: var(--white-color);
  padding: 11px 16px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  color: var(--pink);
}

.wedding-pro-contact_form .learn-more_form {
  background-color: transparent;
  box-shadow: none;
}

.wedding-pro-contact_form {
  background-color: rgb(194 178 128 / 33%);
  padding: 5rem 0;
}

.wedding-pro-contact_form img {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.wedding-pro_review .swiper-pagination-bullet-active {
  background: var(--pink);
}

.wedding-pro-contact_form .from-list {
  padding: 0 32px;
}

.ceremony-product img {
  border-radius: 10px;
}

.product-categories_tab button {
  background-color: var(--pink);
  color: var(--white-color);
  border: 0;
  border-radius: 30px;
  font-size: 19px;
  /* padding: 9px 15px; */
  margin-bottom: 10px;
  font-size: 15px;
  width: 100%;
  height: 40px;
}

.product-categories_tab {
  margin-top: 26px;
}

.product-categories .black-button {
  font-size: 14px;
}

.product-categories .black-button i {
  padding-right: 10px;
}

.shop-wedding {
  padding-bottom: 5rem;
}

.shop-wedding-box {
  position: relative;
}

.dot {
  position: absolute;
  cursor: pointer;
}

.dot1 {
  top: 50%;
  left: 50%;
  cursor: pointer;
}

.shop-wedding .dot .dress {
  opacity: 0;
  visibility: hidden;
  background: #ffff;
  border-radius: 10px;
  width: calc(100% + 380px);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 39px;
  height: 264px;
}

.shop-wedding .dot:hover .dress {
  opacity: 1;
  visibility: visible;
}

.dot2 {
  left: 0 !important;
  bottom: 20% !important;
  top: unset;
}

.shop-wedding .dot1 .dress {
  top: -270px;
}

.shop-wedding .dress .product img {
  object-fit: contain;
}

.shop-wedding .dot .dot-icon {
  color: var(--white-color);
  background-color: #00000054;
  padding: 7px;
  border-radius: 50%;
  font-size: 13px;
}

.shop-wedding-box3 .dot2 .dress {
  left: -100px;
  top: -294px;
}

.shop-wedding-box3 .dot1 .dress {
  left: revert-layer;
  top: -294px;
  right: 0 !important;
}

.shop-wedding-box2 .dot2 .dress {
  top: -147px;
}

.shop-wedding-box1 .dot2 .dress {
  top: -147px;
}

.market-place-registry {
  padding: 22px 0 0 47px;
  display: block;
  color: var(--pink) !important;
}

.marketplace-shop_page span {
  padding-top: 13px;
  display: block;
  font-weight: 600;
}

.market-place-faq {
  padding-bottom: 5rem;
}

.market-place-faq-part {
  background-color: rgb(194 178 128 / 45%);
  padding: 100px 25px;
  border-radius: 17px;
}

.market-place-faq-part .accordion-item {
  margin-bottom: 25px;
}

.market-place-faq-part .accordion-flush .accordion-item .accordion-button {
  border-radius: 25px !important;
}

.market-place-faq-part .accordion-flush .accordion-item {
  border-radius: 25px;
}

.market-place-faq-part i {
  padding-bottom: 40px;
  font-size: 49px;
}

.footer-sign-up {
  font-size: 18px;
}

.start-button {
  color: var(--white-color);
  display: block;
  padding: 10px 0;
  font-size: 15px;
  transition: all 0.2s;
}

.start-button:hover {
  color: var(--pink);
}

.start-button i {
  margin-left: 10px;
  animation: moverr 1s infinite alternate;
}

@-webkit-keyframes moverr {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-3px);
  }
}

@keyframes moverr {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-3px);
  }
}

.footer-app_icon {
  display: flex;
}

.banner-modal .modal-body {
  text-align: center;
}

.banner-modal .modal-body h4 {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 39px;
  margin-bottom: 0;
}

.banner-modal .modal-body h5 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.banner-modal .modal-body form {
  margin-top: 12px;
}

.banner-modal .modal-body .form-control {
  margin-bottom: 0;
  height: 40px;
  border-radius: 0;
}

.banner-modal .modal-body .banner-password {
  text-decoration: underline;
  color: var(--black-color) !important;
  font-weight: 600;
}

.banner-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

.banner-popup_button {
  margin-top: 43px;
}

.banner-popup_button p a {
  color: var(--pink);
  font-weight: 600;

  transition: all 0.5s;
}

.banner-part .modal-body .bride-buttonone {
  height: 40px;
  padding: 3px;
  font-size: 16px;
}

.banner-popup_button hr {
  width: 85px;
  margin: 10px auto;
}

.banner-popup_button p {
  font-size: 16px;
}

/* log-in */
.log-in_page {
  padding: 8rem 0 5rem;
}

.log-in_page .progress {
  height: 7px;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 0;
}

.login-page_city .form-select {
  width: 60%;
}

.custom-select {
  position: relative;
  padding-left: 14px;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  border-bottom: 1px solid var(--black-color);
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  color: var(--black-color);
  padding: 8px 16px;
  border: 1px solid var(--black-color);
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;

  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgb(184 115 51 / 16%);
}

.step1 .form-control {
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
}

.step1 p {
  font-size: 13px;
  font-family: var(--primary-font);
  font-weight: 600;
}

.step1 input::placeholder {
  font-size: 12px;
}

.progress-text h3 {
  margin-bottom: 20px;
}

.step1 .progress-text h3 {
  margin-bottom: 66px;
}

.log-in_page .next {
  background-color: var(--pink);
  color: var(--white-color);
  border: 0;
  padding: 5px 21px;
  border-radius: 28px;
}

.log-in_page .back {
  border: 0;
  color: var(--pink);
  background-color: transparent;
}

.step2 p {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 26px;
}

.step2 .form-control {
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
  background-color: transparent;
}

.step2 .input-group {
  width: 50%;
}

.step2 input::placeholder {
  font-size: 12px;
}

.step3 .form-check-input {
  border-radius: 50%;
}

.step5 p {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--primary-font);
}

.step5 .progress-text h4 {
  margin-top: 22px;
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 15px;
}

.step6 p {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--primary-font);
}

.login-price {
  width: 50% !important;
}

.step6 .form-select {
  margin-left: 12px;
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
}

.log-in_page .modal-body {
  text-align: center;
}

.log-in_page .modal-header {
  border-bottom: 0;
}

.login-count-head {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 600;
}

.progress-text {
  margin-top: 0;
}

.mega_menu {
  position: absolute;
  content: "";
}

.log-in_page .form-check-input:focus {
  border-color: var(--sand);
  outline: 0;
  box-shadow: none !important;
}

.log-in_page .form-check-input:checked {
  background-color: var(--sand);
  border-color: var(--sand);
}

.real::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #ffffff 0%, #d2bebab8 54%);
}

.menuBox h5 i {
  margin: 0 10px;
  position: relative;
  top: 3px;
}

.wedding-dress_heading {
  background-color: var(--white-color);
}

.wedding-dress_text::first-letter {
  float: left;
  font-size: 100px;
  line-height: 1;
  margin-right: 15px;
}

.wedding-dress_text {
  margin-top: 15px;
  max-width: 609px;
}

.wedding-dress_name em {
  font-weight: 600;
}

.wedding-dress_name {
  padding: 25px 0;
}

.blog-details {
  min-height: 900px;
  background-attachment: fixed;
  overflow: hidden;
  padding-bottom: 0;
}

.blog-details::after {
  content: none;
}

.bg-whites {
  position: relative;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 1;
  background: linear-gradient(rgba(255, 255, 255, 0) 1%, #ffffff);
}

.blog-details p {
  font-size: 15px;
  font-weight: 600;
}

.blog-details a {
  text-decoration: underline;
}

.blog-details p span {
  margin-left: 15px;
}

.wedding-dress_headings {
  padding: 45px 0;
}

.wedding-dress_gallery {
  padding: 25px 0 50px;
}

.wedding-dress-social {
  padding: 50px 0 100px;
}

.wedding-dress-social .social-icon a {
  margin-right: 28px;
  font-size: 23px;
}

.pinterest-image {
  position: relative;
}

.pinterest-image::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 64%);
}

.wedding-dress-paragraph {
  padding: 100px 0;
}

.ads img {
  height: 200px;
  object-fit: cover;
}

.ads {
  padding-bottom: 100px;
}

.side-ads {
  position: sticky;
  top: 0;
}

.wedding-dress_blog {
  margin-top: 50px;
}

.wedding-dress_buy {
  padding-bottom: 100px;
}

.w_line {
  opacity: 1;
  border: 3px solid;
}

.wedding-dress-cover {
  padding: 5rem 0;
}

.wedding-dress-cover .side-ads {
  top: 25px;
}

#myModal .modal-lg {
  max-width: 96%;
}

#myModal a {
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
  transition: all 0.5s;
}

#myModal a:hover {
  color: var(--pink);
}

#myModal .col-md-7 h5 {
  font-weight: 600;
}

#myModal ul {
  margin-top: 22px;
}

#myModal img {
  height: 159px;
  border-radius: 13px;
  object-fit: cover;
  max-width: 100%;
}

#myModal .vendor-list {
  margin-top: 53px;
  margin-bottom: 0;
  font-weight: 600;
}

#myModal .start {
  color: var(--pink);
  font-size: 15px;
  margin-top: 4px;
}

#myModal ul {
  margin-top: 22px;
  border-right: 2px solid #00000026;
}

#myModal ul:last-child {
  border-right: 0;
}

#myModal h6 {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

#myModal h5 {
  font-weight: 600;
}

#myModal small {
  font-weight: 600;
  margin-top: 14px;
  display: block;
  font-size: 13px;
}

#myModal .modal-header {
  display: none;
}

.login-page_duringbox .select {
  display: none;
}

.login-page_duringbox #a {
  padding-left: 0px;
  background: white;
  margin-bottom: 0;
}

.login-page_duringbox #a img,
.btn-select img {
  width: 20px;
}

.login-page_duringbox #a li {
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.login-page_duringbox #a li:hover {
  background-color: #f4f3f3;
}

.login-page_duringbox #a li img {
  margin: 5px;
}

.login-page_duringbox #a li span,
.btn-select li span {
  margin-left: 10px;
}

/* item list */

.login-page_duringbox .b {
  display: none;
  width: 100%;
  max-width: 355px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-top: -7px;
  position: relative;
  z-index: 1;
}

.login-page_duringbox .open {
  display: show !important;
}

.login-page_duringbox .btn-select {
  margin-top: 10px;
  width: 100%;
  max-width: 350px;
  height: 35px;
  border-radius: 0;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid var(--black-color);
}

.log-in_year {
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
  position: relative;
  top: -10px;
}

.login-page_city .form-select {
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
}

.login-page_duringbox .btn-select li {
  list-style: none;
  float: left;
  padding-bottom: 0px;
  width: 100%;
  text-align: left;
}

.login-page_duringbox .btn-select:hover li {
  margin-left: 0px;
}

/* .login-page_duringbox .btn-select:hover {
    background-color: #F4F3F3;
    border: 1px solid transparent;
    box-shadow: inset 0 0px 0px 1px #ccc;
} */
.login-page_duringbox {
  margin-top: 18px;
}

.skip-button {
  margin-top: 10px;
}

.login-page_duringbox .btn-select:focus {
  outline: none;
}

.login-page_duringbox .lang-select {
  margin-left: 10px;
  width: 100%;
  margin-right: 27px;
  height: 0;
}

.step .col-md-6 img {
  height: auto;
  object-fit: cover;
}

.step5 .lang-select li img {
  height: unset;
  object-fit: none;
}

#drawing_canvas {
  position: absolute;
  top: -50%;
  width: 100%;
  /* height: 100%; */
  transform: translateX(-50%);
  left: 50%;
  /* right: 0; */
  /* margin: 0 auto; */
  text-align: center;
}

.log-in_page .modal-content {
  overflow: hidden;
}

.log-in_page .btn-close {
  position: relative;
  z-index: 1;
}

.log-in_page .modal-body p {
  margin-bottom: 50px;
}

.log-in_page .bride-buttonone {
  padding: 11px 20px;
  font-size: 17px;
  height: 49px;
  line-height: 29px;
}

.log-in_page .model-icon .icon img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 9px #00000059;
}

.model-icon {
  margin-top: 67px;
}

.model-icon h5 {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

.log-in_page .modal-body h3 {
  font-size: 33px;
  color: var(--pink);
  margin-bottom: 20px;
}

.login-page_price select {
  width: 60%;
}

.search-page {
  padding: 5rem 0;
}

.search-page-box .d-flex img {
  flex: 0 0 208px;
  width: 173px;
  margin-right: 41px;
  height: 100%;
  /* object-fit: cover; */
}

.search-page-box .d-flex {
  border-bottom: 1px solid var(--black-color);
  padding: 40px 0;
}

.search-page-box .d-flex:last-child {
  border-bottom: 0;
}

.search-page-box .search-text a {
  color: var(--black-color) !important;
}

.search-page-box .search-text a small {
  font-size: 13px;
}

.search-page-box .search-text a h4 {
  font-weight: 600;
  margin-bottom: 18px;
}

.search-page-box .search-text a p {
  margin-top: 18px;
}

.error-page {
  padding: 10rem 0 5rem;
}

.error-page p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.error-button i {
  margin-right: 10px;
}

.error-button {
  color: var(--pink) !important;
  font-size: 20px;
}

.error-page img {
  max-width: 67%;
}

.error-page h2 {
  font-size: 200px;
}

.product-single .product-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 10px 0;
  gap: 12px;
}

.product-single .color,
.product-single .color input {
  position: relative;
  overflow: hidden;
  width: 31px;
  height: 31px;
  border-radius: 50%;
}

.color {
  display: inline-block;
  margin: 3px;
}

.color input {
  position: absolute;
  top: 0;
  left: 0;

  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.color i {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: 0.15s opacity ease-in-out;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: var(--white-color);
}

.color input:checked+i {
  opacity: 1;
}

.dress-details-page .product-slider-img .swiper-wrapper .swiper-slide img {
  border-radius: 4px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
  width: 100%;
}

.dress-details-page .product-slider-img .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--black-color);
  border-radius: 4px;
  padding: 2px;
}

.dress-details-page .ratio_square-2 {
  background: #efefef;
  box-shadow: 0 0 10px #0000002b;
  align-items: center;
}

.dress-details-page .ratio_square-2 img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.dress-details-page .dress-details-slider .swiper-wrapper {
  height: calc(167.3197px + 20.4521vw);
}

.dress-details-page .product-slider-thumb .swiper-slide {
  position: relative;
}

.dress-details-page .product-slider-thumb .product-heart_icon {
  top: 0;
  position: absolute;
  right: 0;
}

.bride-inner-page-faq .accordion-button:last-child span {
  display: inline-block;
  width: 50%;
  text-align: end;
  font-size: 17px;
}

.bride-inner-page-faq .accordion-button .text-start {
  font-weight: 600;
}

.bride-inner-page .top h6 {
  position: relative;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 13px;
}

.bride-inner-page .top h6::after {
  position: absolute;
  content: "";
  background-color: #00000052;
  width: 37%;
  height: 1px;
  top: 7px;
  right: 0px;
}

.bride-inner-page .top img {
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.bride-inner-page .top {
  border-bottom: 1px solid #0000006b;
  margin-bottom: 19px;
  padding-bottom: 11px;
}

.bride-inner-page .top span {
  font-weight: 600;
}

.bride-inner-page .gown-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: left;
  padding: 0 12px;
}

.bride-inner-page .gown-text h4 {
  margin-bottom: 5px;
}

.bride-inner-page .love {
  position: absolute;
  top: 21px;
  right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #00000057;
  font-size: 17px;
  color: #000 !important;
}

.bride-inner-page .gown-directory-list {
  border-bottom: 1px solid #00000047;
  padding-bottom: 32px;
}

.bride-inner-page .top h6::before {
  position: absolute;
  content: "";
  background-color: #00000052;
  width: 37%;
  height: 1px;
  top: 7px;
  left: 0px;
}

.bride-inner-page-faq .accordion-button {
  justify-content: space-between;
}

.bride-inner-page-faq .accordion-button::after {
  background-size: auto;
  width: 15px;
  height: 15px;
  margin: 0 0 0 10px;
}

.bride-inner-page-faq .accordion-body .form-check {
  margin-bottom: 1.125rem;
}

.bride-inner-page-faq .form-check-input:checked {
  background-color: var(--pink);
  border-color: var(--pink);
}

.bride-inner-page-faq .form-check-input:focus {
  box-shadow: none;
}

.bride-inner-page-faq .form-check-label {
  font-family: var(--primary-font);
  font-size: 18px;
}

.bride-inner-page-faq {
  margin-top: 13px;
  border-top: 1px solid #00000036;
}

.accordion-button:focus {
  box-shadow: none;
}

.bride-inner-page-faq .accordion-button:not(.collapsed) {
  color: var(--pink);
  background-color: transparent;
  box-shadow: 0;
}

.bride-inner-page-faq .accordion-item {
  border: 0;
}

.bride-inner-page-faq .accordion {
  border-bottom: 1px solid #c3c3c3;
}

.bride-inner-page-sidebar {
  position: sticky;
  top: 108px;
  background: #00000012;
  padding: 17px;
}

.bride-inner-page-sidebar .accordion-item {
  background-color: transparent;
}

.bride-inner-page-sidebar .accordion-button {
  background-color: transparent;
}

.bride-inner-page-sidebar .add h6 {
  text-align: center;
  color: var(--pink);
  font-family: var(--heading-font);
}

.mm-page {
  min-height: 0;
}

/* .mm-menu--offcanvas {
    position: absolute;
    z-index: -1;
} */

/* #menu:not(.mm-menu):not(.mm) {
    display: none;
} */
.customMenu {
  position: fixed;
  top: 0;
  width: calc(100% + 15px);
  height: 100vh;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  display: none;
}

.customMenu.show {
  display: block;
}

.customMenu ul {
  padding-top: 78px;
  position: fixed;
  top: 0;
  width: 474px;
  height: 100%;
  background: #fff;
  text-align: right;
  overflow-y: scroll;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.customMenu>ul {
  right: -350px;
  background: #fff;
}

.customMenu ul li {
  color: var(--black-color);
  padding: 6px 30px;
  font-size: 16px;
  width: 100%;
}

.customMenu ul ul {
  position: fixed;
  right: -650px;
  width: 350px;
  padding-top: 80px;
  padding-bottom: 50px;
  top: 0;
  overflow-y: scroll;
  height: 100vh;
  z-index: -1;
}

.customMenu>ul.open {
  right: 0;
}

.customMenu ul ul.open {
  right: 471px;
}

.naviocn .fa-close {
  display: none;
}

.close .fa-bars {
  display: none;
}

.naviocn.close .fa-close {
  display: block;
}

.customMenu ul ul li {
  text-align: left;
}

#header {
  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;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

/* #header a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 10px;
    width: 50px;
    height: 50px;
    text-decoration: none;
} */

#header a[href="#menu"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mm-wrapper--opened #header a[href="#menu"] {
  display: none;
}

#header a[href="#page"] {
  display: none;
}

.vendor-page-categories {
  padding: 0 0 5rem;
}

.vendor-page-categories .vendor-icon img {
  width: auto;
  height: 115px;
}

.vendor-page-categories .vendor-icon {
  text-align: center;
}

.vendor-page-categories .vendor-icon h6 {
  font-size: 14px;
  color: var(--black-color) !important;
  font-weight: 600;
}

.vendor-page-categories .vender-slider {
  margin-top: 37px;
}

.filter-container {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 20px;
  justify-content: end;
}

.action-buttons .dropdown {
  display: flex;
  align-items: center;
  border-right: 1px solid #000;
}

.filter-item:last-child {
  border-right: none;
}

.filter-item i {
  font-size: 18px;
  margin-right: 10px;
  color: var(--pink);
}

.dropdown-list {
  font-size: 16px;
  border-radius: 4px;
  padding: 5px 10px;
  color: #333;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  border: 0;
}

.dropdown-list:focus {
  border-color: var(--pink);
  box-shadow: 0 0 5px rgba(198, 63, 98, 0.5);
}

.get-started {
  background-color: var(--pink);
  color: var(--white-color);
  border: none;
  padding: 19px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0px 3px 3px 0;
}

.get-started:hover {
  background-color: var(--pink);
}

.get-started:active {
  background-color: var(--pink);
}

.p-100 {
  padding: 5rem 0;
}

.destination-page-list li i {
  margin-right: 10px;
  color: var(--pink);
  font-size: 22px;
}

.destination-page-list li {
  font-size: 18px;
}

.heading {
  font-size: 70px;
}

.destination-page-text p {
  text-align: justify;
}

.destination-text_list {
  margin-left: 43px;
  border: 1px solid var(--pink);
  height: 100%;
  border-radius: 15px;
  padding: 49px;
  position: relative;
  background-color: var(--white-color);
  box-shadow: 6px 9px 0px 0px var(--pink);
}

.destination-text_list h5 {
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 33px;
}

.destination-text_list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  font-size: 15px;
}

.destination-text_list ul li i {
  margin-right: 15px;
  font-size: 7px;
  color: var(--pink);
}

.destination-page small a {
  color: var(--pink) !important;
}

.destination-page small {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
}

.destination-page-work-list li {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 28px;
}

.destination-page-work-list li span i {
  margin-right: 15px;
  color: var(--pink);
}

.location-slider .swiper-scrollbar {
  opacity: 1 !important;
  width: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 10px;
}

.location-slider .img-box {
  background-color: var(--white-color);
  border-radius: 25px;
  transition: all 0.5s;
}

.location-slider .img-box:hover {
  box-shadow: 6px 9px 0px 0px var(--pink);
}

.location-slider .img-box img {
  border-radius: 20px 20px 0 0;
}

.location-slider .swiper-button-next,
.location-slider .swiper-button-prev {
  top: unset;
  bottom: -14px;
}

.location-slider .swiper-button-next {
  right: 20%;
  left: unset;
}

.location-slider .swiper-button-prev {
  left: 20%;
  right: unset;
  opacity: 1;
}

.location-slider .swiper-button-next:after,
.location-slider .swiper-button-prev:after {
  font-size: 21px;
  color: var(--pink);
}

.location-slider .swiper-scrollbar-drag {
  width: 25% !important;
}

.location-slider {
  padding-bottom: 60px;
  padding-top: 20px;
}

.location-slider .img-box div {
  margin-top: 15px;
  padding: 27px;
}

.location-slider .img-box div h4,
.location-slider .img-box div p {
  color: var(--black-color) !important;
}

.location-slider .img-box div h4 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.location-slider .img-box div span {
  color: var(--black-color) !important;
  text-transform: uppercase;
  font-size: 15px;
}

.location-slider .img-box div p {
  margin-bottom: 15px;
}

section.destination-location {
  background-color: var(--nude);
}

.destination-offer img {
  border-radius: 15px;
  margin-top: 42px;
  height: 400px;
  object-fit: cover;
}

.destination-offer .offer-box {
  text-align: left;
  margin-top: 56px;
  border-right: 1px solid #00000038;
  margin-bottom: 100px;
}

.destination-offer .col-md-4:last-child .offer-box {
  border-right: 0;
}

.destination-offer .offer-box h4 {
  font-weight: 600;
  font-size: 21px;
}

.destination-offer .offer-box p {
  margin-bottom: 16px;
  font-size: 17px;
  min-height: 127px;
}

.destination-testimonial {
  position: relative;
}

.destination-testimonial .testimonial {
  background-color: var(--nude);
  margin-top: -1px;
}

.svg-shape svg {
  width: 100%;
  height: auto;
}

.pt-100 {
  padding-top: 5rem;
}

.destination-testimonial .testimonial h2 {
  padding-top: 0;
}

.destination-testimonial .testimonial-slider .swiper-scrollbar {
  opacity: 1 !important;
  width: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 10px;
}

.destination-testimonial .testimonial-slider .swiper-button-next,
.destination-testimonial .testimonial-slider .swiper-button-prev {
  top: unset;
  bottom: -11px;
}

.destination-testimonial .testimonial-slider .swiper-button-next {
  right: 20%;
  left: unset;
}

.destination-testimonial .testimonial-slider .swiper-button-prev {
  left: 20%;
  right: unset;
  opacity: 1;
}

.destination-testimonial .testimonial-slider .swiper-button-next:after,
.destination-testimonial .testimonial-slider .swiper-button-prev:after {
  font-size: 21px;
  color: var(--pink);
}

.destination-testimonial .testimonial-slider .swiper-scrollbar-drag {
  width: 25% !important;
}

.destination-testimonial .testimonial-slider {
  padding-bottom: 60px;
  padding-top: 20px;
}

.destination-testimonial .testimonial-slider h4 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 23px;
  letter-spacing: 2px;
}

.destination-location {
  background-color: var(--nude);
  margin-top: 35px;
}

section.destination-location-page {
  margin-top: -267px;
}

.destination_work {
  background-color: var(--white-color);
  border-radius: 25px;
  position: relative;
  z-index: 1;
  /* padding: 49px; */
}

.destination_work .heading {
  font-size: 90px;
}

.p-v-200 {
  padding: 200px 0;
}

.weddingCebration p {
  margin: 30px 0 50px;
}

.weddingCebration .button {
  height: 50px;
  position: relative;
  border: #e3bc9a 1px solid;
  border-radius: 15px;
  margin: 12px 0;
  width: 100%;
}

.weddingCebration .button img {
  height: 25px;
  margin-right: 10px;
}

.weddingCebration .button label,
.weddingCebration .button input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.weddingCebration .button input[type="radio"] {
  opacity: 0.011;
  z-index: 100;
}

.weddingCebration .button input[type="radio"]:checked+label {
  background: #fff5ed;
}

.weddingCebration .button label {
  cursor: pointer;
  z-index: 90;
  line-height: 1.8em;
}

.relative {
  position: relative;
}

.sidebar-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Position the items */
}

.make-me-sticky {
  position: sticky;
  top: 15px;
  padding: 0 15px;
}

.p-v-100 {
  padding: 100px 0;
}

.gifts h3 {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 600;
}

/* .footer-part::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 82%);
    z-index: -1;
} */
.footer-part {
  background-color: #1c1a18;
}

.footer-sign {
  font-size: 17px !important;
}

.footer-sign a {
  margin-left: 8px;
  text-decoration: underline;
  color: var(--pink) !important;
}

#menu a:hover {
  color: var(--pink);
}

.make-me-sticky {
  position: sticky;
  top: 15px;
  padding: 0 15px;
}

.gift h3 {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 600;
}

.p-v-100 {
  padding: 5rem 0;
}

.wedding-dress-box h3 {
  font-size: 18px;
}

.wedding-dress-page-list .wedding-dress-box h3 {
  font-size: 16px;
}

.wedding-dress-page .mt-2 {
  flex-direction: column;
}

.wedding-dress-box svg {
  width: 15px;
  height: 15px;
  margin-right: 4px;
  fill: var(--pink);
}

.wedding-dress-box .rating i {
  margin: 0 5px 0;
}

.wedding-dress-box .love {
  position: absolute;
  right: 14px;
  top: 47px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #00000057;
  font-size: 17px;
  opacity: 0;
  transition: all 0.5s;
}

.wedding-dress-box:hover .love {
  top: 14px;
  opacity: 1;
}

.wedding-dress-box span {
  font-size: 13px;
}

.wt-text-grey {
  text-decoration: line-through;
}

.wedding-dress-page .wedding-dress-price {
  color: var(--pink);
}

.wedding-dress-page-list .wedding-dress-box img {
  height: 374px;
  object-fit: cover;
}

.wedding-dress-box {
  margin-bottom: 25px;
}

.wedding-dress-list li a {
  display: block;
  margin-right: 13px;
  background: #00000030;
  padding: 7px 7px;
  font-size: 12px;
  border-radius: 19px;
  color: var(--black-color) !important;
}

.wedding-dress-list li a svg {
  width: 26px;
  height: 18px;
}

.offcanvas-body li {
  font-size: 14px;
  margin: 7px 0;
}

.offcanvas-body li a:hover {
  text-decoration: underline;
  color: var(--black-color);
}

.offcanvas-body li .show {
  text-decoration: underline;
}

.wedding-dress-page .form-select {
  width: 50%;
  margin-left: 10px;
}

.wedding-dress-page-list {
  border-top: 1px solid #0000002b;
  padding-top: 17px;
}

.wedding-dress-page .view-button {
  border: 2px solid var(--black-color);
  color: var(--black-color) !important;
  padding: 6px 17px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
}

.wedding-dress-page-list .list a {
  margin-left: 13px;
  background: #00000040;
  border-radius: 50%;
  width: 34px;
  display: flex;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-size: 13px;
}

.wedding-page-place img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.wedding-page-place .list-box div {
  border: 1px solid #00000029;
  border-radius: 10px;
  transition: all 0.5s;
}

.wedding-page-place .content {
  border: 0 !important;
  padding: 13px;
  margin-bottom: 0;
}

.wedding-page-place .content p {
  margin: 0 0 10px 0;
  font-size: 16px;
}

.wedding-page-place .list-box:hover div {
  box-shadow: 0 0 10px #424242a6;
}

.wedding-page-place .list-box {
  color: #000 !important;
}

.men-page select {
  margin-left: 10px;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background-color: transparent;
}

.men-page {
  background-color: #a0a0a01c;
  padding: 62px 0;
}

.mens-page-image .mens-image_box h5 {
  margin: 20px 0;
  font-size: 16px;
}

.mens-page-image .mens-image_box {
  margin-bottom: 49px;
}

.honeymoon-and-travel_text {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-color: #fdf2e2;
}

.resort-name {
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 12px;
  font-weight: bold;
}

.mens-article-page .paragraph p {
  margin-bottom: 32px;
}

.men-slider img {
  width: 100%;
}

.men-slider .swiper-button-prev::after,
.men-slider .swiper-button-next::after {
  background-color: #ffffffa3;
  color: var(--black-color);
  padding: 13px 20px;
  font-size: 27px;
  border-radius: 50%;
}

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

.men-slider .post-img-icon {
  opacity: 1;
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 0;
  top: 0;
}

.men-slider .red {
  background-color: var(--white-color);
  color: var(--white-color);
  padding: 4px 6px;
  border-radius: 50%;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.men-slider .red i {
  color: #d0d0d0;
  margin-right: 0;
}

.men-slider .post-icon {
  background-color: transparent;
}

.men-slider .post-icon i {
  color: var(--white-color);
}

.pb-100 {
  padding-bottom: 100px;
}

.c__promo-card {
  position: relative;
  z-index: 1;
}

.c__promo-card::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #f4f4f4;
  width: 92%;
  z-index: -1;
}

.p-v-50 {
  padding: 50px 0;
}

.c__promo-card h2 {
  font-size: 59px;
}

.inner-banner .form-group span {
  position: absolute;
  top: 17px;
  left: 19px;
  z-index: 9;
}

.inner-banner .form-group {
  position: relative;
}

.inner-banner .form-group .form-control {
  padding: 0.375rem 2.75rem;
  height: 57px;
  border-radius: 29px;
}

.inner-banner .couple-search button {
  border-radius: 34px;
  font-size: 15px;
}

.couple-page .col-md-4 {
  text-align: center;
  position: relative;
}

.couple-page .col-md-4::after {
  position: absolute;
  content: "";
  right: 0;
  background-color: var(--white-color);
  width: 1px;
  height: 197px;
  top: -66px;
}

.couple-page-box {
  border-radius: 15px;
  min-height: 244px;
  align-items: center;
  color: var(--white-color);
}

.couple-slider img {
  height: 200px;
  object-fit: cover;
}

.privacy-policy_page p {
  margin-bottom: 15px;
}

.privacy-policy_page ul li {
  margin-bottom: 8px;
  display: flex;
}

.privacy-policy_page ul li span {
  margin-right: 10px;
  font-size: 7px;
  margin-top: 7px;
}

.privacy-policy_page ul {
  margin-left: 36px;
  margin-bottom: 30px;
}

.privacy-policy_page h4 {
  margin-bottom: 15px;
  font-family: var(--heading-font);
  font-size: 20px;
}

.privacy-policy_page h6 span {
  font-size: 8px;
  vertical-align: middle;
  margin-right: 11px;
}

.honeymoon-travel-image .travel-image-text-box {
  background-color: rgb(250 214 165 / 32%);
  padding: 32px 10px 0;
}

.honeymoon-travel-image .travel-image-text-box .bride-buttonone {
  height: 48px;
  line-height: 24px;
  font-size: 15px;
}

.honeymoon-travel-image .travel-image-text-box .d-flex {
  margin-top: 15px;
}

.travel-bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 507px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 23px 23px;
  position: relative;
}

.travel-bg-image::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.travel-bg-imag2 {
  height: 249px;
  width: 100%;
}

.travel-bg-image small,
.travel-bg-image h4 {
  color: var(--white-color) !important;
  position: relative;
  z-index: 1;
}

.honeymoon-luxury .luxury-box .text {
  background-color: rgb(250 214 165 / 32%);
  padding: 32px 10px 0;
}

.honeymoon-luxury .luxury-box .text p {
  font-size: 15px;
}

.honeymoon-luxury .luxury-box .bride-buttonone {
  height: 48px;
  line-height: 24px;
  font-size: 14px;
}

.honeymoon-luxury .luxury-box .text small {
  color: var(--pink);
}

.honeymoon-luxury .luxury-box {
  margin-top: 18px;
}

.honeymoon-destinations-editor-picks li {
  border-bottom: 1px solid #000;
}

.honeymoon-destinations-editor-picks li a {
  font-size: 34px;
}

.honeymoon-destinations-editor-picks li a .title {
  width: 75%;
  font-size: 1.5rem;
  color: var(--pink) !important;
}

.honeymoon-destinations-editor-picks li a .icon {
  width: 10%;
  color: var(--nude) !important;
}

.honeymoon-destinations-editor-picks li a .counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(103, 119, 123, 0.102);
  width: 15%;
  margin-bottom: -5.2rem;
}

.honeymoon-destinations .row {
  border-top: 1px solid #00000038;
  border-left: 1px solid #00000038;
}

.honeymoon-destinations .text-wrap {
  border-right: 1px solid #00000038;
  padding: 23px;
}

.honeymoon-destinations-editor-picks {
  padding: 26px 0;
}

.honeymoon-destinations h4 {
  color: var(--pink);

  font-size: 32px;
}

.honeymoon-destinations p {
  font-size: 19px;
  margin-bottom: 15px;
}

.ts-img-slider {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 507px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.ts-img-slider::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 29%);
  z-index: -1;
}

.ts-img-slider a {
  height: 100%;
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  justify-content: end;
  padding: 59px;
  color: var(--white-color) !important;
}

.ts-custom-blogs .text {
  max-width: 350px;
  margin-left: 16px;
}

.ts-custom-blogs {
  padding: 3rem 0;
}

.ts-custom-blogs img {
  height: 285px;
  object-fit: cover;
}

.hotel {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 20px;
  height: 205px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hotel .text {
  position: absolute;
  bottom: 4px;
  left: 0;
  color: white;
  font-size: 1.5rem;
}

.hotel .star {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 5px;
  color: var(--white-color);
  font-size: 12px;
  padding: 10px;
}

.ts-custom-blogs hr {
  margin: 68px 0 47px;
}

.ts-custom-blogs .hotel-list .heading {
  margin-bottom: 43px;
  font-size: 41px;
}

.ts-custom_review .review-list {
  border-top: 1px solid #c7c8c9;
  border-bottom: 1px solid #c7c8c9;
  padding: 25px 0;
}

.ts-custom_review .ts-review-text {
  text-align: center;
  position: relative;
  padding: 0 29px 0 0;
}

.ts-custom_review .ts-review-text::after {
  position: absolute;
  content: "";
  right: 0;
  top: -26px;
  bottom: 0;
  background-color: #c7c8c9;
  width: 1px;
  height: 258px;
}

.ts-custom_review .col-md-4:last-child .ts-review-text::after {
  background-color: transparent;
}

.ts-custom_review .beauty-button a {
  margin-right: 10px;
}

.ts-custome-monthbox {}

.ts-custom_review .ts-review-text p {
  font-size: 21px;
  min-height: 221px;
  padding: 32px 0;
}

.ts-custom_review .ts-review-text h6 {
  color: var(--pink);
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 20px;
}

.ts-custom_review .ts-review-text .star i {
  background-color: var(--pink);
  color: #fff;
  padding: 4px;
  font-size: 12px;
}

section.ts-custom_review {
  padding-bottom: 24px;
}

.ts-custom-blogs .hotel .star {
  background-color: var(--pink);
}

.agency-wedding .paragraph {
  margin-top: 5rem;
}

.agency-wedding .grid-item {
  padding: 11px;
}

.commercial-shoots-page p {
  max-width: 422px;
}

.commercial-editorial {
  background-color: hsl(0, 0%, 98%);
}

.commercial-editorial h3 {
  margin-bottom: 70px;
}

.commercial-bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.commercial-bg-image::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.51);
  z-index: -1;
}

.commercial-shoots-page_two .wrap {
  max-width: 608px;
  padding-left: 68px;
}

.commercial-shoots-page_two .wrap h4 {
  font-weight: 600;
}

.help-center-search-box .form-control {
  height: 95px;
  font-size: calc(16px * 1.45);
  background: rgba(255, 255, 255, 1);
  border: 1px solid #eceeef;
  border-radius: 2px 2px 0 0;
  padding: 2px 10px 0 70px;
}

.help-center-search-box {
  position: relative;
}

.help-center-search-box span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 23px;
  font-size: 25px;
  color: var(--pink);
}

.custom-block__link {
  text-align: center;
  background: var(--nude);
  border: 1px solid rgba(255, 245, 237, 1);
  border-radius: 2px;
  display: block;
  padding: 28px;
  height: 100%;
  color: var(--black-color) !important;
  transition: all 0.5s;
}

.custom-block__link:hover .custom-block__title {
  color: var(--black-color);
  text-decoration: underline;
}

.custom-block__link:hover {
  border: 1px solid var(--black-color);
}

.custom-block__title {
  font-size: 21px;
  margin-bottom: 15px;
}

.custom-block__description {
  font-size: 18px;
}

.promoted-articles {
  margin-top: 57px;
}

.promoted-article_item {
  padding: 30px;
  background: rgba(255, 255, 255, 1);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(55, 60, 80, 0.05);
  margin-bottom: 24px;
}

.help-center-page {
  position: relative;
}

.help-center-page::after {
  position: absolute;
  content: "";
  bottom: 0;
  background-color: rgb(227 188 154 / 24%);
  left: 0;
  right: 0;
  top: 176px;
  z-index: -1;
}

.promoted-articles__list {
  margin-top: 40px;
}

.promoted-article_item a {
  color: var(--pink);
  font-size: 23px;
  margin-bottom: 3px;
  display: block;
}

.promoted-article_item:hover a {
  color: var(--black-color);
  text-decoration: underline;
}

.promoted-article_item p {
  font-size: 15px;
}

.community-box .svg-icon {
  text-align: center;
  margin-bottom: 30px;
}

.community-box {
  text-align: center;
  border: 1px solid #e1e3df;
  padding: 34px 24px;
  color: var(--pink);
}

.community-box h4,
.community-box p {
  text-decoration: underline;
  color: var(--black-color) !important;
}

.community-box:hover h4,
.community-box:hover p {
  text-decoration: none;
}

.community-box:hover {
  background-color: #b9b9b90d;
}

.logo a img {
  max-width: 300px;
}

footer .logo a img {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.ts-custome-monthbox .heading {
  font-size: 52px;
}

.ts-custome-monthbox .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: var(--pink);
  border-radius: 0;
  padding: 10px 27px;
}

.ts-custome-monthbox .nav-link {
  color: var(--pink);
  font-size: 17px;
  padding: 10px 27px;
  text-align: center;
}

.ts-custome-monthbox .nav {
  border: 1px solid #c7c8c9;
}

.ts-custome-monthbox .nav li {
  border-right: 1px solid #c7c8c9;
}

.ts-custome-monthbox .tab .tab-pane img {
  width: 100%;
}

.ts-custome-monthbox .tab .tab-pane {
  margin-top: 42px;
}

.ts-custome-monthbox .tab .tab-pane h3 {
  font-size: 38px;
  color: var(--pink);
  margin-bottom: 16px;
}

.ts-custom-booking .heading {
  font-size: 50px;

  padding-bottom: 10px;
}

.ts-custom-booking .box-wrap .heading {
  border-bottom: 0;
  text-align: center;
  position: relative;
  font-size: 31px;
  margin-left: 64px;
}

.ts-custom-booking .box-wrap .heading::after {
  position: absolute;
  content: "";
  background-color: var(--pink);
  width: 81px;
  height: 2px;
  left: -10px;
  top: 24px;
  /* bottom: 0; */
  margin: 0 auto;
}

.ts-custom-booking .box-wrap .call {
  color: var(--pink);
}

.ts-custom-booking .box-wrap p {
  border-top: 1px solid #00000057;
  padding-top: 13px;
}

.ts-custom-booking .box-wrap h5 {
  color: var(--pink);
  margin-bottom: -6px;
  font-size: 16px;
}

.ts-custom-booking .box-wrap small {
  font-size: 11px;
}

.ts-custom-booking .box-wrap {
  /* border-right: 1px solid #00000057; */
  /* padding: 0 32px 0 0; */
}

.enquiry-section .info-box {
  padding: 20px;
}

section.enquiry-section {
  padding-bottom: 100px;
}

.enquiry-section .form-box {
  background-color: #fdf2e2;
  color: #000;
  border-radius: 5px;
}

.enquiry-section .form-box h3 {
  color: #000;
  margin-bottom: 20px;
}

.enquiry-section .form-box label {
  font-weight: 600;
}

.enquiry-section .form-box .nav {
  padding: 14px 1px;
}

.enquiry-section .form-box .nav li {
  position: relative;
}

.enquiry-section .nav-tabs {
  border-bottom: 1px solid #cacbcc;
}

.enquiry-section .form-box .nav li::after {
  position: absolute;
  top: -15px;
  bottom: 0;
  right: 0;
  content: "";
  background-color: #cacbcc;
  width: 1px;
  height: 73px;
}

.enquiry-section .form-box .nav li::after {
  position: absolute;
  top: -15px;
  bottom: 0;
  right: 0;
  content: "";
  background-color: #cacbcc;
  width: 1px;
  height: 73px;
}

#your-trip {
  padding: 25px;
}

#your-trip .slider-labels span {
  font-size: 11px;
}

#your-trip .slider-labels {
  display: flex;
  justify-content: space-between;
}

#your-trip .btn-custom {
  background-color: var(--white-color);
  color: #000 !important;
}

.enquiry-section #your-trip #notes {
  width: 100%;
  height: 175px;
}

.enquiry-section #your-details {
  padding: 25px;
}

.enquiry-section .nav-link {
  border: none;
  color: #000 !important;
  padding: 10px 20px;
  cursor: pointer;
  width: 100%;
  background-color: transparent !important;
}

.enquiry-section .form-box li {
  width: 50%;
}

.enquiry-section .form-note {
  font-size: 12px;
  margin-top: 10px;
}

.enquiry-section .info-box .heading {
  font-size: 35px;
  border-bottom: 1px solid #00000057;
  padding-bottom: 10px;
}

#your-trip .btn-custome {
  background-color: #000 !important;
  color: #fff !important;
}

#your-details .btn {
  background-color: var(--white-color) !important;
  color: #000 !important;
}

.designer-spotlights-page h3 {
  margin: 41px 0;
}

.designer-spotlights-page .designer-contact h5 {
  font-weight: 600;
  font-size: 24px;
}

.designer-spotlights-page .m__social-share a {
  margin-right: 29px;
  font-size: 23px;
  color: var(--black-color) !important;
}

.designer-spotlights-page .designer-contact li {
  margin-bottom: 17px;
}

.designer-spotlights-page .c__wysiwyg-content .heading {
  font-size: 45px;
}

.designer-spotlight-editor .editor-box {
  margin-top: 66px;
}

.designer-spotlight-editor .editor-box h5 {
  font-weight: 600;
  font-size: 30px;
}

.banner-part .video-part {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-video {
  width: 100%;
}

.global-contact {
  /* border: 1px solid #000; */
  padding: 55px;
  box-shadow: 0 0 16px #e3bc9a;
  border-radius: 15px;
}

.global-contact input.form-control {
  height: 50px;
}

.global-contact label {
  color: var(--pink);
  font-family: var(--heading-font);
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 20px;
}

.global-contact input::placeholder,
.global-contact textarea::placeholder {
  font-size: 12px;
}

.sticky-nav-wrapper ul li a {
  margin-right: 15px;
  font-weight: 400;
  position: relative;
}

.sticky-nav-wrapper ul li a::after {
  position: absolute;
  content: "";
  bottom: -29px;
  left: 0;
  right: 0;
  background-color: var(--pink);
  width: 0;
  height: 3px;
  transition: all 0.5s;
}

.sticky-nav-wrapper ul li a:hover:after {
  width: 100%;
}

.sticky-nav-wrapper {
  border-bottom: 1px solid #00000036;
  padding-bottom: 21px;
}

.sticky-nav-wrapper ul li a:hover {
  color: var(--black-color);
  font-weight: 600;
}

.personalized-page_text {
  margin-left: 29px;
}

.personalized-image {
  background-color: #e3bc9a21;
  padding: 70px 0;
}

.personalized-image h4 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
}

.inspiration::after {
  content: none;
}

.real-box {
  display: flex;
  align-items: center;
}

.honeymoon-travel-text {
  padding-top: 24px;
}

.marketplace-page {
  padding: 10rem 0 5rem;
}

#wedding h5 {
  font-weight: 600;
  font-size: 14px;
}

#wedding h5 i {
  position: relative;
  top: 1px;
}

#wedding .header-mark {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.header-wedding {
  margin-top: 13px;
  margin-bottom: 13px;
}

.header-wedding li a {
  color: #0000008c;
  font-size: 14px;
}

#wedding strong {
  color: var(--black-color);
}

.ts-vertical-tabs-container .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--pink);
  background-color: transparent;
  position: relative;
  transition: all 0.4s;
}

.ts-vertical-tabs-container .nav-pills .nav-link.active::after {
  position: absolute;
  content: "";
  left: -16px;
  top: 20px;
  background-color: var(--pink);
  width: 87px;
  height: 1px;
  opacity: 0;
}

.ts-vertical-tabs-container .nav-pills .nav-link.active:hover::after {
  opacity: 1;
}

.ts-vertical-tabs-container .nav-pills .nav-link {
  text-align: start;
  font-size: 20px;
  color: var(--black-color);
}

.ts-vertical-tabs-container .nav-pills .nav-link.active:hover {
  padding-left: 95px;
}

.ts-vertical-tabs-container .tab-content {
  border-left: 1px solid #dee2e6;
  padding-left: 33px;
  padding-top: 15px;
}

.ts-vertical-tabs-container .nav-pills {
  padding-top: 15px;
}

.home-slider-wrap .item a {
  border: 0;
  width: 170px;
  height: 170px;
  box-shadow: 0 0 10px #00000033;
  padding: 15px;
}

.home-slider-wrap .item a img {
  border-radius: 50%;
}

.home-slider-wrap .item a :hover {
  --main-bg: none;
  border: solid 5px transparent;
  border-radius: 50%;
  --gradient-border: none;
  background: transparent;
  background-position: center center;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
  box-shadow: none;
}

.gown .gown-img .image {
  height: 400px;
  object-fit: cover;
}

.gown .gown-box small {
  color: var(--pink) !important;
  font-weight: 600;
}

.design {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

.design::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgb(235 235 235 / 51%);
  z-index: -1;
}

.design p {
  color: var(--black-color);
  margin-bottom: 15px;
}

.bride-gown .gown-icon {
  padding: 29px 4px;
}

.bride-gown .gown-text small {
  color: var(--pink);
  font-weight: 600;
}

.home-slider-wrap .mySwiper {
  padding-bottom: 28px;
  padding-top: 28px;
}

.home-slider h2 {
  font-size: 57px;
}

.login-step {
  padding: 10rem 0 5rem;
  background-color: #f0f4f8;
}

.login-step .sidebar {
  width: 100%;
  background: #f6a58a94;
  padding: 40px 30px;
  position: relative;
  height: 100%;
  border-radius: 14px 0 0 14px;
}

.login-step .col-md-4 {
  padding-right: 0;
}

.login-step .col-md-8 {
  padding-left: 0;
}

.login-step .main-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  background: white;
  border-radius: 0 14px 14px 0;
}

.login-step .datepicker table tr td.active {
  background: var(--nude) !important;
  border-radius: 50%;
  color: var(--white-color);
}

.login-step .progress-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.login-step .step-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.login-step .step-item.active {
  background: #ffffffbd;
}

.login-step .step-number {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: #f6a58aba;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.login-step .step-item.completed .step-number {
  background: #e64b8d;
  color: white;
}

.login-step .step-text {
  font-weight: 600;
  color: #000000;
  font-size: 19px;
}

.login-step .step-item.active .step-text {
  color: var(--pink);
  font-weight: 600;
}

.login-step .form-container {
  max-width: 500px;
  margin: 0 auto;
}

.login-step .form-step {
  display: none;
}

.login-step .form-step.active {
  display: block;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.login-step .step-title {
  font-size: 28px;
  color: #2d3748;
  margin-bottom: 30px;
  font-weight: 600;
}

.login-step .form-group {
  margin-bottom: 25px;
}

.login-step .form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #4a5568;
  font-size: 15px;
}

.login-step .form-group input,
.login-step .form-group select {
  width: 100%;
  padding: 14px;
  border: 2px solid #edf2f7;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.login-step .form-group input:focus,
.login-step .form-group select:focus {
  border-color: var(--nude);
  background: var(--white-color);
  outline: none;
}

.login-step .form-group input:hover,
.login-step .form-group select:hover {
  border-color: #ffd1e3;
}

.login-step .buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 40px;
}

.login-step button {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-step button.prev {
  background: #f7fafc;
  color: #4a5568;
}

.login-step button.next,
.login-step button.submit {
  background: #ffb6d3;
  color: #943658;
}

.login-step button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.login-step button.prev:hover {
  background: #edf2f7;
}

.login-step button.next:hover,
.login-step button.submit:hover {
  background: #ffa6c9;
}

.login-step .success-message {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.login-step .success-message.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.success-message h2 {
  color: #e64b8d;
  font-size: 32px;
  margin-bottom: 20px;
}

.success-message p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

.form-header {
  margin-bottom: 40px;
}

.form-header h1 {
  font-size: 24px;
  color: #2d3748;
  margin-bottom: 10px;
}

.form-header p {
  color: #718096;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 20px;
  }

  .progress-steps {
    margin-top: 20px;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .step-text {
    display: none;
  }

  .main-content {
    padding: 20px;
  }
}

.error {
  border-color: var(--nude) !important;
  background: #fff5f5 !important;
}

.error-message {
  color: var(--pink);
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.error+.error-message {
  display: block;
}

.form-group input:focus::placeholder {
  color: #a0aec0;
}

.step-description {
  color: #718096;
  font-size: 14px;
  margin-top: 5px;
}

#confetti-holder {
  position: fixed;
  height: 100vh;
  pointer-events: none;
  width: 100%;
  top: 0;
  z-index: 2;
  text-align: center;
  vertical-align: middle;
}

#e0DQ82qcIov1 {
  height: 150vh;
  min-width: 600px;
  min-height: 600px;
}

.center {
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: #fff8f5;
  align-items: center;
  justify-content: center;
}

#shooter {
  font-weight: 500;
  padding: 16px 32px;
  min-width: 200px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  color: rgba(250, 250, 255, 0.9);
  background-color: #e64784;
  border: none;
  border-radius: 48px;
  box-shadow: 0 4px 8px #f2b3c8;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.1s ease-out;
}

#shooter:hover {
  background-color: #f74d8d;
  color: rgba(250, 250, 255, 1);
  box-shadow: 0 8px 16px #f6ceda;
}

#shooter:active {
  box-shadow: 0 0 8px #f6ceda;
  transform: translateY(4px);
  color: #fff;
}

span.shoot {
  font-size: 28px;
  text-align: center;
  pointer-events: none;
}

.confetti-canvas {
  position: fixed !important;
  z-index: 9999 !important;
}

.success-modal {
  z-index: 9999;
}

.success-modal .modal-content {
  background-color: transparent;
  color: #fff;
}

.success-modal .modal-header {
  border-bottom: none;
}

.success-modal .modal-body {
  text-align: center;
  font-size: 92px;
  font-family: var(--heading-font);
  color: var(--black-color);
  background-color: #ffffffba;
  padding: 24px;
}

.step4 .progress-text h3 {
  margin-bottom: 55px;
}

.step4 label {
  font-weight: 600;
}

.success-modal .modal-header .btn-close {
  display: none;
}

header.fixed {
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.scenic img {
  height: 114px !important;
}

.home-date.box p {
  font-size: 19px;
  font-weight: 600;
}

.home-icon-slider {
  margin-left: -35px;
}

.down-arrow {
  position: fixed;
  right: 23px;
  bottom: 0;
  z-index: 999;
}

.down-arrow {
  color: var(--white-color);
  font-size: 34px;
  background-color: var(--pink);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px;
}

.catering-check_box {
  display: grid;
  grid-template-columns: auto auto;
  margin-bottom: 20px;
  margin-top: 12px;
  column-gap: 22px;
}

.catering-check_box label {
  font-size: 15px;
}

.elope {
  font-weight: 600;
}

.bride-inner-page-sidebar .bride-buttonone {
  margin: 0 10px 0 0;
  padding: 6px 0;
  height: 46px;
  font-size: 15px;
  width: 140px;
  border-radius: 27px;
}

.bride-inner-page-sidebar h4 {
  font-weight: 600;
  margin-bottom: 18px;
}

.explore-wedding-fashion .topbar .col-md-11 {
  border-top: 1px solid #b8b8b8;
  padding-top: 33px;
}

.explore-wedding-fashion .top-bar-img-box img {
  height: 200px;
  width: 100%;
}

.explore-wedding-fashion .top-bar-img-box h6 {
  margin-top: 5px;
}

.explore-wedding-fashion .top-bar-img-box {
  row-gap: 18px;
}

.bride-inner-page .form-check-input[type="radio"] {
  border-radius: 0;
}

.bride-inner-page .form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.bride-inner-page .accordion-body {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 200px;
}

.bride-inner-page .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bride-inner-page .dress input[type="radio"] {
  visibility: hidden;
  height: 0;
  width: 0;
}

.bride-inner-page .dress input[type="radio"]:checked+label {
  background: #f1f2f4;
  border-radius: 6px;
}

.bride-inner-page .dress {
  display: flex;
  flex-wrap: wrap;
}

.bride-inner-page .dress .form-check {
  display: flex;
  /* flex-direction: column; */
  padding-left: 0;
  padding: 6px;
  margin-right: 24px;
}

.bride-inner-page .dress .form-check span {
  font-size: 12px;
  margin-top: 5px;
}

.bride-inner-page .accordion-body {
  border-bottom: 1px solid #adadad;
}

.bride-inner-page .dress .form-check-label img {
  width: 90px !important;
  height: 90px !important;
  object-fit: cover;
  object-position: top;
  margin-right: 0 !important;
}

.bride-inner-page-faq .dress .form-check-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.action-buttons .custom-dropdown {
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
  min-width: 272px;
  border: 1px solid #000;
  padding: 0 18px 0;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 200px;
}

.action-buttons .custom-dropdown .dropdown-item {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  color: #333;
}

.action-buttons .custom-dropdown .dropdown-item:last-child {
  border-bottom: 1px solid #ddd;
}

.action-buttons .custom-button {
  display: flex;
  align-items: center;
  border: 0;
  padding: 15px;
  border-radius: 10px;
  width: 286px;
  background: white;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.action-buttons .custom-button span {
  color: #333;
  font-size: 14px;
}

.action-buttons .icon {
  margin-right: 10px;
}

.action-buttons {
  display: flex;
  align-items: center;
  /* gap: 15px; */
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
}

.action-buttons .guest {
  border-right: 0;
}

/* .action-buttons  .guest-button {
        padding: 15px;
        border-radius: 10px;
        background: white;
        border: 2px solid #ccc;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
      } */

.action-buttons .get-started {
  padding: 15px 25px;
  border-radius: 0 9px 9px 0;
  background: var(--pink);
  color: white;
  font-size: 15px;
  font-weight: bold;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.action-buttons .dropdown a:hover {
  background-color: transparent;
  color: var(--pink);
  border-radius: 0;
}

.bride-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  padding: 10px 0;
  list-style: none;
}

.bride-pagination li {
  display: inline-block;
}

.bride-pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.bride-pagination a:hover,
.bride-pagination a.active {
  background-color: var(--black-color);
  color: #fff;
}

.bride-pagination .arrow {
  background: none;
  border: none;
}

.bride-pagination .arrow i {
  font-size: 22px;
}

.profileContent {
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  position: relative;

  /* max-width: 1360px; */
  background-size: 100%;
}

.profileContent-text {
  position: absolute;
  top: 50%;
  left: 50%;
  /* margin: 0 auto; */
  transform: translate(-50%, -50%);
  background: #ffffff9c;
  padding: 46px;
}

/* .profileContent::after{
        position: absolute;
        content: "";
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgb(246 165 138 / 43%);
        z-index: -1;
    } */

.profileContent ul li {
  margin-left: 24px;
}

.homescreen-wrapper {
  background-color: rgb(246 165 138 / 43%);
  padding-bottom: 5rem;
}

.homescreen-wrapper .accordion-button:not(.collapsed) {
  color: #333;
  background-color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  border-radius: 10px 10px 0 0;
}

.homescreen-wrapper .accordion-item {
  border-radius: 10px;
}

.homescreen-wrapper .venue-slider {
  margin-top: 18px;
}

.homescreen-wrapper .swiper-button-next:after,
.homescreen-wrapper .swiper-button-prev:after {
  font-size: 13px;
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
  padding: 7px 10px;
  border-radius: 50%;
}

.homescreen-wrapper .swiper-button-next,
.homescreen-wrapper .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 35%);
}

.homescreen-wrapper .box-wrap {
  border: 1px solid #00000042;
  border-radius: 15px;
  padding: 15px 15px;
  margin-bottom: 17px;
}

.blue {
  background-color: #cdf9ff;
  border: 0 !important;
}

.venue-page-wrapper {
  padding: 43px 25px 25px;
}

.venue-page-wrapper img {
  width: 400px;
  height: 120px;
  border-radius: 15px;
  rotate: 9deg;
}

.venue-page-wrapper .accordion-button::after {
  top: 17px;
  position: absolute;
  left: 100px;
}

.venue-page-wrapper .accordion-button:hover {
  z-index: 0;
}

.step6 .requests input {
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
}

.step6 .requests textarea {
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
}

.step6 .requests textarea::placeholder {
  font-size: 11px;
}

#successModal h3 {
  font-size: 37px;
}

#submitBox .btn-secondary {
  background-color: var(--black-color);
}

.step4 .form-control {
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
}

#confetti-canvas {
  position: fixed !important;
  /* Ensures it stays on top */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  /* Prevent interaction */
  z-index: 9999;
  /* Set a high z-index */
}

.step5 i {
  color: var(--brown-color);
}

.dashboard-directory h2 {
  padding-bottom: 0;
}

/* personalize */
.personalize-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  width: 100%;
  margin-bottom: 19px;
  display: flex;
  align-items: end;
  position: relative;
  z-index: 1;
}

.personalize-box::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.51);
  z-index: -1;
}

.personalize-box h6 {
  color: var(--white-color);
  margin-left: 18px;
  margin-bottom: 18px;
  font-family: var(--heading-font);
  font-size: 25px;
}

.personalize-vendor-categories {
  padding: 0 0 5rem;
}

.personalize-vendor-categories .col-md-12 {
  margin-bottom: 50px;
}

.personalize-vendor-box {
  display: flex;
  /* height: 100%; */
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid var(--white-color);
  box-shadow:
    0 3px 12px 0 rgba(0, 0, 0, 0.14),
    0 5px 12px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
}

.personalize-vendor-box img {
  height: 100px;
  width: 100px;
}

.personalize-vendor-box h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 5px;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
}

.wedding-vendors ul {
  display: grid;
  grid-template-columns: auto auto auto;
}

.wedding-vendors ul li a {
  font-family: var(--heading-font);
  text-decoration: underline;
  margin-bottom: 9px;
  display: block;
  font-size: 22px;
  color: var(--black-color) !important;
}

.wedding-vendors {
  padding: 0 0 5rem;
}

.ods-c-masthead-v1 h2 {
  font-size: 62px;
}

.ods-c-masthead-v1 .custom-dropdown {
  width: 250px;
}

.ods-c-masthead-v1 .dropdown-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.ods-c-masthead-v1 {
  background-color: var(--white-color);
  /* box-shadow: -1px -2px 7px #00000073; */
  padding: 18px 0;
  margin-top: 3rem;
}

.vendor-page-categoriesE.home-icon-slider {
  margin-left: 0;
}

.ods-c-masthead-v1::after {
  background-color: transparent;
}

.dashboard-directory .form-select,
.dashboard-directory .form-control {
  height: 51px;
  padding-top: 16px;
  font-size: 12px;
  width: 109%;
}

.dashboard-directory .categories {
  position: absolute;
  top: 5px;
  left: 25px;
  font-size: 10px;
}

.dashboard-directory .bride-buttonone {
  padding: 6px 17px;
  height: 49px;
  font-size: 13px;
}

.dashboard-directory h2 {
  padding: 0;
}

.dashboard-directory {
  padding: 5rem 0 0;
}

.vendor-post .blog-post-text a h6 {
  text-align: start;
  color: var(--black-color) !important;
}

.blog-post-text h3 {
  color: #000 !important;
}

.vendor-icon-slider .home-icon-slider {
  margin-left: 0;
}

.vendor-page-wrap .vendor-text-img h2 {
  font-size: 24px;
}

.vendor-page-wrap .vendor-text-img p {
  font-size: 18px;
  height: 224px;
}

.vendor-page-wrap .vendor-img,
.vendor-page-wrap .vendor-img img {
  height: 100%;
  object-fit: cover;
}

.photograph-name li {
  font-family: var(--heading-font);
  font-size: 16px;
}

.login-wrap {
  position: relative;
  padding: 35px 24px;
  width: 100%;
  border-radius: 16px;
  background-color: var(--white-color);

  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.login-wrap .banner-password {
  text-decoration: underline;
  color: var(--black-color) !important;
  font-weight: 600;
}

.signup-page {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10rem 0 5rem;
}

.signup-page .sub-container {
  position: relative;
  /* line-height: 1.5; */
  margin-bottom: 13px;
}

.signup-page label {
  color: var(--black-color);
  font-size: 12px;
  position: absolute;
  background-color: var(--white-color);
  padding: 0rem 0.4rem;
  font-weight: 500;
  transform: translate(16px, -12px);
}

.signup-page .form-control {
  height: 54px;
  border: 1px solid #e9ecee;
  font-size: 15px;
  background-color: var(--white-color) !important;
}

.signup-page .login-wrap h4 {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 39px;
  margin-bottom: 0;
  text-align: center;
}

.signup-page .login-wrap h5 {
  font-family: var(--heading-font);
  font-weight: 600;
  text-align: center;
}

.signup-page .login-wrap p a {
  color: var(--pink);
}

.signup-page .login-wrap form {
  margin-top: 25px;
}

.signup-page .bride-buttonone {
  font-size: 16px;
  padding: 10px 0;
  height: unset;
  line-height: unset;
  border: 1px solid #000;
}

.naviocn {
  color: var(--black-color) !important;
}

.comingsoon-page {
  position: relative;
  height: 100vh;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.comingsoon-page::after {
  content: "";
  position: absolute;
  background-image: url(../images/error-img.png);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: -1;
  background-position: center;
  background-size: cover;
}

.header-login {
  padding: 12px 7px;
}

/* find-couple-page */
.find-couple-page {
  padding: 10rem 0 5rem;
}

.find-couple-page h1 {
  font-family: var(--heading-font);
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 20px;
}

.find-couple-page .couple-list {
  padding-top: 5rem;
}

.find-couple-page .couple-list p {
  border-bottom: 1px solid #0000002b;
  padding-bottom: 26px;
}

.shop-page .item {
  position: relative;
}

.shop-page .product-img-icon {
  position: absolute;
  top: 0;
  right: 11px;
}

.shop-page .owl-nav,
.shop-page .owl-dots {
  display: none;
}

.shop2 {
  border-bottom: none !important;
}

.shop2 .gown-box {
  box-shadow: none;
}

.shop2 .gown-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.shop2 h4 {
  font-size: 23px !important;
  font-family: var(--heading-font);
  color: var(--black-color) !important;
}

.shop2-review .nav-tabs .nav-link.active {
  border-color: transparent;
  color: var(--black-color);
}

.shop2-review .nav-tabs {
  border-bottom: 0;
  justify-content: start;
}

.shop2-review .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.shop2-review .nav-link {
  color: var(--black-color);
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 24px;
  position: relative;
}

.shop2-review .nav-link::after {
  position: absolute;
  content: "";
  background-color: var(--black-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
}

.shop2-review .nav-tabs .nav-link.active::after {
  width: 100%;
}

.shop-single .bride-buttonone {
  font-size: 16px;
}

.shop2 .accordion-body {
  overflow-y: hidden;
  overflow-x: hidden;
  height: auto;
}

.vendor-post .bride-buttontwo {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 13px 28px;
  transition: 0.5s all ease;
  font-weight: 400;
  font-size: 15px;
  border-radius: 10px;
  display: inline-block;
  width: auto;
  height: 35px;
  line-height: 11px;
  font-weight: 600;
  text-align: start;
  border: 0;
  padding-left: 0;
}

.vendor-post .blog-post-text {
  text-align: start;
  display: grid;
}

.vendor-post .blog-post-box .text {
  font-size: 18px;
  margin-bottom: 15px;
}

.vendor-post .bride-buttontwo {
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 24px;
  background-color: transparent;
}

.venue-name {
  font-size: 15px;
  margin-bottom: 14px;
}

.blog-location span {
  font-weight: 500;
  font-size: 14px;
  color: #7c7c7c;
}

.elopement {
  text-align: center;
  padding: 70px 97px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.elopement::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black-color);
  z-index: -1;
}

.elopement h3 {
  font-size: 44px;
  color: var(--white-color);
}

.elopement p {
  color: var(--white-color);
}

.elopement .bride-buttonone {
  background-color: var(--white-color);
  color: #000;
}

.vendor-bg .top-bar-img-box a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  height: 150px;
}

.vendor-bg .top-bar-img-box a::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.51);
  z-index: -1;
}

.vendor-bg .top-bar-img-box a h6 {
  font-size: 21px;
  font-family: var(--heading-font);
  color: var(--white-color) !important;
}

.elopement2 .video-part video {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.elopement2 .profileContent-text {
  width: 900px;
}

.elopement2 h3 {
  font-size: 66px;
}

.elopement2 a {
  margin-right: 0;
}

.inspiration .inspiration-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.inspiration a {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  padding: 25px;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.inspiration a::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.51);
}

.inspiration .inspiration-box h3 {
  font-size: 45px;
  color: var(--white-color) !important;
  text-align: center;
}

.vendor-bg .topbar .col-md-11 {
  padding-top: 0;
}

.vendor-icon-slider-two .item a {
  border: 0;
}

.vendor-icon-slider-two .item span {
  font-size: 11px !important;
}

/* .vendor-icon-slider-two .item svg path{
    fill: #000;
}


.vendor-icon-slider-two .item:hover svg path{
    fill: unset;
} */

.venue-tab {
  margin-top: 1rem;
}

.profileContent .venue-tab ul li {
  margin-left: -8px;
}

.venue-tab .nav-tabs .nav-link.active {
  border-color: transparent;
  color: var(--black-color);
}

.venue-tab .nav-tabs {
  border-bottom: 0;
  justify-content: end;
}

.venue-tab .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.venue-tab .nav-link {
  color: var(--black-color);
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 16px;
  position: relative;
}

.venue-tab .nav-link::after {
  position: absolute;
  content: "";
  background-color: var(--black-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  margin: 0 auto;
  right: 0;
}

.venue-tab .nav-link.active::after {
  width: 78%;
}

.vendor-icon-slider .nav-tabs {
  border-bottom: 0;
  flex-direction: column;
}

.editor-note h6 {
  font-weight: 600;
  margin-top: 11px;
  font-size: 25px;
}

.editor-note p {
  font-size: 19px;
}

.directory-head {
  padding-top: 7rem;
}

.directory-head h3 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: 41px;
  letter-spacing: 3px;
}

.directory-head h4 {
  font-family: var(--default-font);
  font-weight: 500;
  font-size: 33px;
  margin-top: -19px;
}

.directory-head ul {
  gap: 15px;
}

.directory-head a i {
  margin-right: 10px;
}

.venue-details-wrapper img {
  height: 300px;
  object-fit: cover;
}

.venue-details-wrapper p {
  font-size: 16px;
}

.editor-note h3 {
  font-size: 45px;
}

.venue-vendor .circle-img2 {
  bottom: -21px;
}

.editor .team {
  padding-bottom: 0;
}

.inspiration-editor {
  padding-top: 8rem;
}

.inspiration-editor .team {
  padding: 3rem 0;
}

.inspiration-editor .team-text h2 {
  font-size: 73px;
}

.inspiration-editor .team-img h2 {
  font-size: 98px;
}

.inspiration-editor .team-img-bg {
  padding: 33px 0;
}

#stay h3 {
  font-size: 45px;
}

/* .inspiration-editor .gown-box {
    padding: 0 0 21px 0;
} */
/* 
.inspiration-editor .team-text img {
    height: 389px;
    object-fit: cover;
} */

.inspiration-editor .team-text img {
  outline-offset: -26px;
}

.inspiration-editor .team-side-img2 {
  bottom: -4px;
}

.inspiration-editor .team-side-img2 img {
  width: 100px;
}

.inspiration-editor .gown-box {
  margin-bottom: 0;
}

.inspiration-editor .gown-img img {
  height: 351px;
}

.inspiration-editor .gown-box a {
  color: var(--black-color) !important;
}

/* .inspiration-editor .team-img-bg {
    height: 439px;
    margin-left: -75px;
} */

.index-slider .images .image {
  position: relative;
  display: flex;
  justify-content: center;
}

.index-slider .images .image img {
  width: 108px;
}

.index-slider .images .first {
  position: absolute;
  /* top: 0;
    left: 0; */
  z-index: -1;
  transition:
    z-index 0.5s ease,
    transform 0.6s ease;
}

.index-slider .images .image:hover .first {
  z-index: 0;

  transform: scale(1.05);
}

.index-slider .item .owl-item-text {
  margin-top: 0px;
}

.index-slider .owl-item-text span {
  color: var(--black-color) !important;
}

/* .vendor-icon-slider .images .first {
    position: absolute;
    top: -5px;
    left: 48px;
    z-index: -1;
    transition: z-index .5s ease, transform .6s ease;
    width: 86px !important;
} */

.vendor-icon-slider-two .images .image {
  position: relative;
  display: flex;
  justify-content: center;
}

.vendor-icon-slider-two .images .first {
  top: 0;
  left: 7px;
}

.directory-head .location li a {
  font-size: 14px;
}

/* .social-media-page.editor .blog-sec h2 {
    position: relative;
    display: inline-block;
} */

/* .social-media-page .blog-sec h2::after {
    right: -21rem;
    
} */
.social-media-page.editor .blog-sec h2::after {
  width: 694px;
}

.social-media-page h2 {
  font-family: var(--default-font);
  font-size: 52px !important;
}

.social-media-page h2 span {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 29px;
  margin-left: 10px;
}

.social-media-page img {
  height: 100%;
  object-fit: cover;
}

.social-media-page .side-image {
  height: 200px;
  object-fit: cover;
}

.inspiration-editor .gown-text2 p {
  font-size: 17px;
  min-height: 77px;
}

.inspiration-editor .gown-text2 small {
  font-size: 12px;
}

.discover-inspiration h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 24px;
  min-height: 50px;
}

.discover-inspiration .head-title {
  font-size: 48px;
}

.discover-inspiration .bride-buttonone {
  color: var(--white-color);
  padding: 9px 21px;

  font-size: 14px;
  height: 50px;
}

.discover-inspiration .bride-buttonone:hover {
  color: #000;
}

.discover-wrap h3 {
  margin-top: 0;
  min-height: 0;
}

.gown .wraper-side-img,
.gown .wraper-side-img2 {
  width: 7%;
}

.destination-page-work .destination-page-work-list p {
  font-weight: 600;
}

.honeymoon-and-travel_text h3 {
  font-size: 43px;
}

.honymoon-booking-page ul li {
  margin-top: 35px;
}

.honymoon-booking-page ul li h4 {
  font-weight: 600;
  font-size: 22px;
}

.honymoon-booking-page .paratwo {
  font-size: 19px;
}

.honymoon-booking-page ul li p {
  font-size: 19px;
}

.honeymoon-and-travel_text p {
  font-size: 27px;
}

.destination-banner::after {
  background-color: transparent;
}

.destination-banner {
  height: 900px;
}

.travel-banner {
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.travel-banner::after {
  background-color: #ffffff69;
}

.travel-banner h1 {
  color: #000;
}

.gifting-inner-banner .carousel-item {
  height: 700px;
}

.gifting-inner-banner .carousel-item2 {
  height: 900px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gifting-inner-banner .carousel-control-next:focus,
.gifting-inner-banner .carousel-control-next:hover,
.gifting-inner-banner .carousel-control-prev:focus,
.gifting-inner-banner .carousel-control-prev:hover {
  opacity: 1;
}

.gifting-inner-banner .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-color: #fff;
  opacity: 1;
  box-shadow: 0 0 15px #000;
}

.gifting-inner-banner .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-color: #fff;
  opacity: 1;
  box-shadow: 0 0 15px #000;
}

.gifting-section-box h2 {
  font-size: 49px;
}

.gifting-section-box {
  padding: 50px 0;
}

.gifts img {
  object-fit: cover;
}

.gift-market img {
  height: 400px;
  object-fit: cover;
}

.b-img img {
  height: 250px;
  object-fit: cover;
}

.gifts.editor h2 {
  font-family: var(--default-font);
}

.gifts.editor h2 span {
  font-family: var(--heading-font);
  font-size: 24px;
  margin-left: 20px;
}

.gifts.editor h2::after {
  width: 900px;
}

.gift-image-box2 img {
  height: 100%;
}

.gifting-section-box .gift-product {
  background-color: #fff;
  box-shadow: 0 0 10px #00000047;
  padding: 15px;
  border-radius: 11px;
  height: 100%;
}

.gifting-section-box .gift-product p {
  min-height: 97px;
  font-size: 16px;
}

.gifting-section-box .gift-product h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 20px;
}

.gifting-section-box .gift-product .bride-buttonone {
  font-size: 14px;
  height: 39px;
  width: 198px;
  padding: 3px 0;
}

.gifting-section-box .gift-product img {
  max-width: 220px;
  min-height: 213px;
}

.venue-details-wrapper a {
  font-size: 16px;
  height: 48px;
  padding: 13px 15px;
  display: inline;
  border-radius: 10px;
}

.venue-details-wrapper h1 {
  font-size: 66px;
  text-transform: capitalize;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.venue-details-wrapper p {
  font-size: 20px;
}

.venue-details-wrapper.wrapper-box {
  background-color: #d8d2c9;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.venue-details-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}

.directory-detail-about p {
  font-size: 19px;
}

.amenities-details h2 {
  font-size: 45px;
  /* position: absolute; */
  top: 0;
  margin-left: -28%;
  margin-top: -35px;
}

.grid-box .box-hover {
  background-color: #fff;
  box-shadow: 0 0 10px #00000038;
  /* padding: 10px; */
  border-radius: 12px;
  /* background-color: #e5e1f0; */
  /* background-color: #6F7568; */

  height: 100%;
}

.grid-box .box-hover img {
  padding: 10px;
  height: 400px;
  object-fit: cover;
}

.text-hover {
  /* box-shadow: 0 0 0px #00000038; */
  background-color: #fff;
  padding: 37px;
  border-radius: 0 0 12px 12px;
  margin-top: 22px;
}

.text-hover p {
  font-size: 18px;
}

.grid-box2 .text-hover p {
  margin-bottom: 15px;
}

.grid-box2 .text-hover a {
  color: #000 !important;
  text-decoration: underline;
}

.text-hover h4 {
  font-weight: 600;
  font-size: 23px;
  margin: 0 0 6px 0;
}

.white-hover {
  box-shadow: 0 0 10px #00000038;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.white-hover h6 {
  font-weight: 600;
  color: #848484;
  letter-spacing: 1px;
  font-size: 15px;
}

.white-hover ul li {
  margin-bottom: 10px;
  color: #000;
  font-size: 15px;
}

.white-hover ul {
  margin-top: 18px;
}

.grid-box a {
  color: #000 !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.fade-up-anim {
  animation: fadeUp 1s ease forwards;
}

.js-animate {
  opacity: 0;
  /* Important: Hide until animated */
}

.gown-icon img {
  filter: invert(1);
}

.venuedetails-pagewrap .prople img {
  width: 29px;
  height: 29px;
}

.venue-details-wrapper h6 {
  font-size: 14px;
}

.venuedetails-pagewrap ul a {
  display: flex;
  align-items: end;
  gap: 2px;
}

.editor-note .bride-buttontwo {
  border-color: #00000078;
  font-size: 18px;
}

.details-contact h3 {
  font-size: 36px;
}

.details-contact li {
  font-weight: 600;
  margin-bottom: 10px;
}

.details-contact img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
}

.details-contact .wrap {
  box-shadow: 0 0 10px #00000075;
  background-color: #fff;
  padding: 37px;
  border-radius: 0 0 12px 12px;
}

.map {
  margin-top: -56px;
  position: relative;
  z-index: 1;
  padding: 0 19px !important;
}

.map iframe {
  padding: 0 15px;
}

.explore-wedding-fashion h3 {
  font-size: 41px;
}

.page {
  background-color: #f5f5f5;
}

.venuelogin {
  padding: 150px 0 100px;
  position: relative;
}

.venuelogin .left-img {
  position: absolute;
  top: 111px;
  left: 0;
  width: 274px;
  z-index: 2;
}

.venuelogin .right-img {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 172px;
  z-index: 2;
}

.venuelogin .icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.venuelogin h6 {
  letter-spacing: 1px;
  margin-top: 10px;
}

.venue-login-box {
  position: relative;
  z-index: 1;
}

.venue-login-box .box2 {
  max-width: 50%;
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
}

.venue-login-box .box1 {
  position: absolute;
  left: -26px;
  z-index: -1;
  top: 0;
}

.venue-login-box .box1 img {
  width: 339px;
  height: 438px;
  object-fit: cover;
  border-radius: 0 0 141px 141px;
}

.venue-login-box .box3 img {
  width: 339px;
  border-radius: 152px 167px 0 0;
  height: 438px;
  object-fit: cover;
}

.venue-login-box .box3 {
  position: absolute;
  right: -21px;
  z-index: -1;
  bottom: 0;
}

.venue-login-box h4 {
  font-family: var(--heading-font);
  font-size: 51px;
  font-weight: 600;
}

.venue-login-box p {
  font-family: normal;
  font-size: 27px;
}

.venulogin-two h1 {
  font-family: var(--default-font);
  font-size: 58px;
}

.venulogin-two .two-box {
  background-color: #fff;
  padding: 29px;
  border-radius: 17px;
}

.venulogin-two .two-box ul {
  margin: 24px 0;
}

.venulogin-two .two-box ul li a {
  color: var(--pink);
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 600;
}

.venulogin-two .two-box ul li a:hover {
  text-decoration: underline;
}

.venuepage-wrap .learn-more-content {
  border-radius: 0;
  height: 69%;
}

.wishlist .carousel-item img {
  height: 800px;
}

#venulogin .bg-image {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 376px;
}

#venulogin .modal-content {
  padding: 0;
}

#venulogin h4 {
  text-align: left;
  font-family: var(--heading-font);
  font-size: 32px;
}

#venulogin p {
  text-align: left;
  font-family: unset;
  font-size: 14px;
  font-weight: 600;
}

#venulogin .modal-dialog {
  max-width: 700px;
}

#venulogin span {
  font-family: var(--heading-font);
  font-size: 43px;
  border-right: 1px solid #000;
  padding-right: 30px;
}

#venulogin i {
  color: var(--pink);
}

#venulogin span a:hover {
  color: var(--pink);
}

.preorder {
  padding: 93px 0 46px;
}

.horizontal-scrolling-items {
  display: flex;
  font-size: 20px;
  width: 2600px;
  animation-name: infiniteScroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background: #f5f5f5;
  padding: 16px 0;
}

.horizontal-scrolling-items__item {
  white-space: nowrap;
  margin-left: 96px;
  font-weight: 600;
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.horizontal-scrolling-items:hover {
  animation-play-state: paused;
}

.gifttext-slider {
  overflow: hidden;
}

/* Product Card */
.product-card {
  text-align: left;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  transition: opacity 0.3s ease;
}

.product-img-wrapper .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-img-wrapper:hover .hover-img {
  opacity: 1;
}

.product-img-wrapper:hover .main-img {
  opacity: 0;
}

/* Color dots */
.color-dots {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.color-dots .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
}

/* Grid View Switch */
.view-btn {
  cursor: pointer;
  font-size: 22px;
  opacity: 0.4;
}

.view-btn.active {
  opacity: 1;
}

/* Different grid layouts */
.grid-4 .product-card {
  width: 25%;
}

.grid-3 .product-card {
  width: 33.33%;
}

.grid-2 .product-card {
  width: 50%;
}

/* Bootstrap row override */
#productWrapper>.product-card {
  flex: 0 0 auto;
}

#gift-accordian .range-slider {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  height: 5em;
}

#gift-accordian .range-slider svg,
#gift-accordian .range-slider input[type="range"] {
  position: absolute;
  left: 0;
  top: -27px;
}

#gift-accordian input[type="number"] {
  border: 0;
  border-bottom: 1px solid #ddd;
  text-align: right;
  font-size: 16px;
  -moz-appearance: textfield;
  width: 100%;
}

#gift-accordian .numberrange {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  gap: 15px;
}

#gift-accordian input[type="number"]::-webkit-outer-spin-button,
#gift-accordian input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

#gift-accordian input[type="number"]:invalid,
#gift-accordian input[type="number"]:out-of-range {
  border: 2px solid #ff6347;
}

#gift-accordian input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
}

#gift-accordian input[type="range"]:focus {
  outline: none;
}

#gift-accordian input[type="range"]:focus::-webkit-slider-runnable-track {
  background: var(--nude);
}

#gift-accordian input[type="range"]:focus::-ms-fill-lower {
  background: var(--nude);
}

#gift-accordian input[type="range"]:focus::-ms-fill-upper {
  background: var(--nude);
}

#gift-accordian input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: var(--pink);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

#gift-accordian input[type="range"]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid var(--sand);
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--sand);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

#gift-accordian input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: var(--sand);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

#gift-accordian input[type="range"]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--nude);
  cursor: pointer;
}

#gift-accordian input[type="range"]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

#gift-accordian input[type="range"]::-ms-fill-lower,
#gift-accordian input[type="range"]::-ms-fill-upper {
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

#gift-accordian input[type="range"]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--nude);
  cursor: pointer;
}

#gift-accordian .currency-input {
  position: relative;
  display: inline-block;
  width: 100%;
}

#gift-accordian .currency-input input {
  padding-left: 25px;
}

#gift-accordian .currency-symbol {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #555;
}

#gift-accordian .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

#gift-accordian .accordion-button::after {
  transform: rotate(269deg);
  width: 16px;
  height: 16px;
  background-position: center;
  background-size: cover;
}

#gift-accordian .accordion-button {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

#gift-accordian .accordion-item {
  border-bottom: 0;
}

.gift-box-sell .from-control {
  height: 35px;
  border-radius: 0;
  border: 1px solid #6c757d;
}

.product-detail-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-detail-image .owl-nav {
  display: none;
}

.product-detail-image h5 {
  font-size: 15px;
  margin-top: 0 !important;
}

.product-card p {
  font-size: 17px !important;
}

.product-card .bg-color {
  opacity: 0;
  transition: all 0.4s;
}

.product-card:hover .bg-color {
  opacity: 1;
}

.product-card:hover .hover-text {
  display: none;
}

.form-check-input:checked {
  background-color: var(--pink);
  border-color: var(--pink);
}

.dropdown-featured {
  position: relative;
  display: inline-block;
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 40px;
  left: -17px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 0;
  border-radius: 5px;
  min-width: 220px;
  z-index: 1000;
}

.dropdown-menu-custom a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu-custom a:hover {
  background: #f1f1f1;
}

.sidebar2 {
  transition: all 0.3s ease;
}

.sidebar-hidden {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.sidebar-hidden {
  display: none;
  /* hides sidebar without removing it */
}

.bride-inner-page .gown-img img {
  height: 430px;
  object-fit: cover;
}

.blog-slider .blog-slider2 img {
  height: 537px;
}

.blog-slider .blog-slider2 .owl-nav {
  display: none;
}

.globe-page {
  padding: 10rem 0 3rem;
}

.globe-page h1 {
  font-family: var(--default-font);
  text-align: center;
  font-size: 80px;
}

.globe-page a {
  text-decoration: underline;
}

.globe-page p {
  font-family: inherit;
  font-size: 14px;
  margin-top: 25px;
}

.globe-page .images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.globe-page .images .image {
  position: relative;
}

.globe-page .images .image::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgb(149 149 149 / 45%);
  width: 100%;
  height: 46%;
}

.globe-page .images .image::before {
  position: absolute;
  content: "";
  bottom: 0;
  top: 16px;
  left: 15px;
  border: 1px solid #fff;
  width: 94%;
  height: 93%;
  right: -29px;
}

.globe-page .images {
  position: relative;
  z-index: 1;
}

.globe-page .images h4 {
  position: absolute;
  bottom: 17%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-family: var(--heading-font);
  color: #fff;
  font-size: 60px;
  text-transform: uppercase;
}

.globe-page .images .first {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition:
    z-index 0.5s ease,
    transform 0.6s ease;
}

.globe-page .images .image:hover .first {
  z-index: 0;
}

.globe-page .bride-buttonone {
  text-decoration: none;
  border-radius: 51px;
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 400;
}

.globe-page-banner.destination-banner {
  height: 600px;
}

.globe-page-banner.inner-banner .banner-text {
  padding-top: 0;
}

.step-wizard-container {
  max-width: 900px;
  margin: auto;
}

.step-wizard {
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: 0.3s;
}

.step-item.active .step-circle {
  background: #000;
  color: #fff;
  border-color: #000;
}

.step-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* connecting line */
.step-line {
  flex-grow: 1;
  height: 2px;
  background: #ccc;
  margin: 0 10px;
}

/* content fade animation */
.step-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-pane.active {
  display: block;
  opacity: 1;
}

.step-form {
  padding: 10rem 0 5rem;
}

.build-box {
  background: #fff;
  box-shadow: 0 0 10px #00000017;
  padding: 25px;
  margin-bottom: 20px;
}

.build-box:hover p {
  color: var(--pink);
}

.size-meter-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 1px;
  background: #fcfcfc;
  border: solid 1px #dddddd;
}

.build-box--products__size-meter {
  margin: 50px 0 -1px;
}

.size-meter-box {
  width: 33.33%;
}

.size-meter-box button {
  border: 0;
  width: 100%;
}

.box-images {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 46px;
}

.box-images li {
  width: 23%;
  padding: 0px;
  border: 0px none;
  margin-right: 2%;
  margin-bottom: 20px;
}

.list-subtotal {
  background: #fafafa;
  margin: 0px 20px;
  padding: 40px;
  height: auto;
  box-shadow: 0 0 10px #00000030;
  margin-top: 46px;
}

.info-line {
  border-bottom: 1px solid #0000001a;
  padding-bottom: 11px;
}

.subtotal {
  padding-top: 11px;
}

.list-subtotal .bride-buttontwo {
  border: 1px solid #000;
  border-radius: 0;
}

.list-subtotal .beauty-button a {
  font-size: 17px;
  padding: 3px 24px;
  height: 43px;
  width: auto;
}

.bb-product-name-box .filter-select,
.bb-product-name-box .filter-input {
  border-radius: 0;
  border-color: #ccc;
  padding: 10px;
  font-size: 15px;
}

/* Product Cards */
.bb-product-name-box .product-card {
  border: none;
  background: transparent;
  margin-bottom: 20px;
}

.bb-product-name-box .product-img-container {
  position: relative;
  overflow: hidden;
}

.bb-product-name-box .product-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* "Personalize Me" Button */
.bb-product-name-box .personalize-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #fff;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: 1px solid #000;
  transition: 0.3s;
}

.bb-product-name-box .personalize-btn:hover {
  background: #000;
  color: #fff;
}

.bb-product-name-box .product-title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.bb-product-name-box .product-price {
  font-size: 14px;
  margin-top: -2px;
}

#step3 .build-box {
  padding: 13px;
}

#step3 .build-box p {
  font-size: 17px;
  margin-top: 0 !important;
}

.thankyou-container {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
}

.thankyou-container .done-text {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.thankyou-container .thankyou-title {
  font-size: 59px;
  font-weight: bold;
  margin-bottom: -1px;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.thankyou-container .checkmark {
  font-size: 110px;
  font-weight: bold;
  margin-bottom: 4px;
}

.thankyou-container .btn-black {
  background: #000;
  color: #fff;
  padding: 14px 10px;
  width: 280px;
  margin: 12px auto;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
}

.thankyou-container .btn-black:hover {
  background: #333;
}

.thankyou-container .btn-outline-custom {
  background: #f8f5f5;
  border: 1px solid #ccc;
  padding: 14px 10px;
  width: 280px;
  margin: 12px auto;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.thankyou-container .btn-outline-custom:hover {
  background: #e9e7e7;
}

.farms-image img {
  width: 88px !important;
  margin-top: 10px;
}

.farms-image .owl-item-text {
  margin-top: 10px !important;
}

.farms-image .image .first {
  left: 25px;
}

.farms-image2 .image .first {
  top: -1px;
}

/* akash */

.wedding-form #heading {
  text-transform: uppercase;
  color: #673ab7;
  font-weight: normal;
}

.wedding-form form {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

.wedding-form form fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
}

.wedding-form form fieldset .stand_check {
  display: flex;
  align-items: flex-start;
}

.wedding-form form fieldset .stand_check input {
  width: unset;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 5px;
}

.wedding-form form fieldset .stand_check label {
  line-height: 1;
  font-size: 14px;
}

.wedding-form .form-card {
  text-align: left;
}

.wedding-form form fieldset:not(:first-of-type) {
  display: none;
}

.wedding-form form input,
.wedding-form form textarea {
  padding: 8px 15px 15px 15px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  color: #2c3e50;
  background-color: transparent;
  font-size: 18px;
  letter-spacing: 1px;
}

.wedding-form form input:focus,
.wedding-form form textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #673ab7;
  outline-width: 0;
}

.wedding-form form .action-button {
  width: 100px;
  background: #673ab7;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right;
}

.wedding-form form .action-button:hover,
.wedding-form form .action-button:focus {
  background-color: #311b92;
}

.wedding-form form .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
}

.wedding-form form .action-button-previous:hover,
.wedding-form form .action-button-previous:focus {
  background-color: #000000;
}

.wedding-form .card {
  z-index: 0;
  border: none;
  position: relative;
}

.wedding-form .fs-title {
  font-size: 25px;
  color: #673ab7;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

.wedding-form .purple-text {
  color: #673ab7;
  font-weight: normal;
}

.wedding-form .steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

.wedding-form .fieldlabels {
  color: gray;
  text-align: left;
}

.wedding-form #progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
}

.wedding-form #progressbar .active {
  color: #673ab7;
}

.wedding-form #progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
}

.wedding-form #progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

.wedding-form #progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

.wedding-form #progressbar li.active:before,
.wedding-form #progressbar li.active:after {
  background: #673ab7;
}

.wedding-form .progress {
  height: 8px;
  position: fixed;
  top: 100px;
  width: 98%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 50px 50px 0 0;
}

.wedding-form .progress-bar {
  background-color: rgb(28 25 23 / 1);
}

.wedding-form .fit-image {
  width: 100%;
  object-fit: cover;
}

.wedding-form .wedding_start .wedding_start_inner h1 {
  font-size: 47px;
  font-family: var(--heading-font);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.wedding-form {
  padding-top: 150px;
  padding-bottom: 70px;
}

.wedding-form .wedding_start .wedding_start_inner {
  text-align: center;
}

.wedding-form .wedding_start .wedding_start_inner p {
  padding: 1rem 20px 1rem 20px;
  line-height: 1.2;
  font-size: 22px;
  margin: 0;
  font-family: var(--heading-font);
}

.wedding-form .wedding_start .wedding_start_inner ul li {
  padding-bottom: 5px;
  line-height: 1.2;
  font-size: 22px;
  margin: 0;
  font-family: var(--heading-font);
}

.wedding-form .wedding_start .wedding_start_inner .wedding_start_inner-bg {
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
  margin: 25px auto;
  width: fit-content;
}

.wedding-form .wedding_start {
  max-width: 42rem;
  margin: 0 auto;
}

.wedding-form .wedding_start .wedding_start_inner a {
  background-color: var(--black-color);
  border-radius: 10px;
  color: var(--white-color);
  padding: 12px 34px;
  transition: 0.5s all ease;
  font-weight: 400;
  font-size: 20px;
  display: block;
  width: fit-content;
  height: 58px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
  margin: 0 auto;
  margin-bottom: 20px;
}

.wedding-form .wedding_start .wedding_start_inner a:hover {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.wedding-form .wedding_start .wedding_start_inner span {
  font-size: 12px;
}

.wedding-form.inner {
  padding-top: 100px;
  padding-left: 15px;
  padding-right: 15px;
}

.wedding-form .form-card .fs-title {
  font-size: 36px;
  color: #000;
  line-height: 2.5rem;
  font-weight: 400;
}

.wedding-form #msform fieldset .stand_btn input {
  background-color: #000;
  border-radius: 10px;
  color: var(--white-color);
  padding: 12px 34px;
  transition: 0.5s all ease;
  font-weight: 400;
  font-size: 20px;
  display: block;
  width: 528px;
  height: 60px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
  margin-top: 32px;
  border: 1px solid #000;
}

.wedding-form #msform fieldset .stand_btn input:hover {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.wedding-form .form-card .wed-season {
  display: flex;
}

.wedding-form .form-card .wed-season button {
  border: 1px solid #e5e7eb !important;
  background-color: transparent;
  border-radius: 8px;
  flex: 1 1 0%;
  font-size: 14px;
  line-height: 20px;
}

fieldset .stand_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

fieldset .stand_btn input {
  width: 48% !important;
}

.wedding-form .form-card .envisioning-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wedding-form .form-card .envisioning-btns .envisioning-btn {
  border: 1px solid #e5e7eb !important;
  background-color: transparent;
  border-radius: 8px;
  width: 100%;
  font-size: 18px;
  line-height: 28px;
  padding: 16px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.wedding-form .form-card .envisioning-btns .envisioning-btn:hover {
  border: 1px solid rgb(245 158 11) !important;
}

.wedding-form .tabs-section {
  padding: 4rem 1rem;
  background: linear-gradient(to right, #f6f9fc, #eef2f5);
  font-family: "Segoe UI", sans-serif;
}

.wedding-form .tabs-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgb(168 162 158 / 38%);
  margin-bottom: 24px;
}

.wedding-form .tab {
  text-align: center;
  padding: 1rem;
  padding-top: 0;
  padding-bottom: 8px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 13px;
  font-weight: lighter;
  color: rgb(168 162 158);
}

.wedding-form .wedding-form .tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.wedding-form .tab.active {
  font-weight: 600;
  color: #000;
  border-bottom: 2px solid #000;
}

.wedding-form .tabs-content {
  /* padding: 2rem; */
  background-color: #fff;
}

.wedding-form .tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.wedding-form .tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.wedding-form .tab-pane h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.wedding-form .tab-pane p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.wedding-form .form-card .tabs-content .tab-pane .marry_text {
  border: 1px solid #e5e7eb;
  background-color: transparent;
  border-radius: 8px;
  width: 100%;
  font-size: 13px;
  line-height: 24px;
  padding: 16px;
  text-align: left;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}

.wedding-form form fieldset .form-card .steps {
  font-size: 16px;
  text-align: left;
  margin-bottom: 32px;
}

.wedding-form form fieldset .drm-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.wedding-form form fieldset .drm-btns .drm-btn {
  font-size: 12px;
  line-height: 24px;
  color: rgb(87 83 78);
  padding: 8px 16px;
  border-radius: 25px;
  background-color: transparent;
  border: 1px solid rgb(231 229 228);
  transition: all 0.3s ease-in-out;
}

.wedding-form form fieldset .drm-btns .drm-btn:hover {
  border: 1px solid rgb(245 158 11);
}

.wedding-form .form-card .envisioning-btn.cmn_cust_inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wedding-form .form-card .envisioning-btn.cmn_cust_inr span {
  font-size: 14px;
}

.wedding-form .form-card .envisioning-btn.cmn_cust_inr .custom_color_inr {
  display: flex;
  gap: 4px;
}

.wedding-form .form-card .envisioning-btn.cmn_cust_inr .custom_color_inr .custom_color {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* akash */

/* indranil */
.vendor-banner {
  margin-top: 90px;
  padding: 80px 0;

  h1 {
    font-family: var(--heading-font);
    color: var(--black-color);
    font-size: 81px;
    font-weight: 600;
    text-align: center;
  }
}

.vendor-about {
  padding: 60px 0;
  position: relative;

  h2 {
    font-size: 38px;
  }

  .beauty-text {
    margin: 0;
    margin-left: 20px;
  }

  p {
    padding: 5px 0;
    font-size: 20px;
    font-weight: 400;
  }
}

.vendor-benifit {
  h2 {
    text-align: left;
  }

  h3 {
    font-size: 32px;
    color: var(--white-color);
    margin-left: 50px;
    margin-bottom: 20px;
  }

  ul li {
    padding: 5px 0;
    font-family: var(--heading-font);
    font-size: 20px;
  }
}

.vendor-fit {
  h4 {
    font-family: var(--heading-font);
    color: var(--black-color);
    font-weight: 600;
  }

  ul li {
    font-family: var(--heading-font);
    font-size: 18px;
    padding: 5px 0;
  }

  span.side_post {
    z-index: 99;

    a:hover {
      color: var(--white-color) !important;
    }
  }
}

.vendor-steps {
  text-align: center;

  h2 {
    font-size: 56px;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 28px;
  }

  .counter-box {
    background-color: rgb(235 235 235 / 51%);
    min-height: 150px;
    border: 2px solid var(--pink);
    border-radius: 23px;
    padding: 0 25px;
  }
}

.vendor-form {
  h3 {
    font-size: 32px;
  }

  p {
    font-weight: 600;
    font-size: 22px;
  }

  .form-control,
  textarea {
    border: 0;
    padding: 8px;
    border-radius: 12px;
  }

  .form-flow {
    height: 100dvh;
    overflow-y: auto;
    padding: 0 10px;
  }
}

.form-flow::-webkit-scrollbar {
  width: 0px;
}

.modal-btn {
  display: inline-block;
  width: 40%;
  font-size: 16px;
  padding: 10px;
  line-height: 20px;
  margin: auto;
}

.modal-body p {
  font-family: var(--primary-font);
  font-size: 16px;
  padding: 5px 0;
  font-weight: 600;

  span {
    font-weight: 400;
  }
}

#thanksModal h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

.vendor-price {
  h2 {
    font-size: 40px !important;
    margin-bottom: 25px;
  }

  p {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .price-listing {
    padding: 35px 25px;
    background-color: rgb(194 178 128 / 100%);
    min-height: 470px;
    border-radius: 15px;

    h3 {
      position: relative;
      margin-bottom: 20px;
      width: max-content;

      &::after {
        content: "";
        height: 2px;
        width: 100%;
        background-color: var(--pink);
        position: absolute;
        left: 0;
        bottom: -8px;
      }
    }

    ul {
      padding: 0 0 25px 15px;
    }
  }

  .vendor-site-img {
    left: auto;
    right: 10%;
  }

  .vendor-text p {
    font-weight: 400;
  }

  .VM-link {
    font-weight: 600;
    text-decoration: underline;

    &:hover {
      color: var(--pink);
    }
  }
}

.vendor-benifit .team-list {
  padding: 0 10px 0 52px;
}

.vendor-benifit .team-img-bg {
  padding: 40px 0;
}

.other-font {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Cormorant Garamond";
  }

  p,
  a,
  span,
  li {
    font-family: "Inter";
  }
}

.gallery-button .black-button {
  border-radius: 12px;
  height: 50px;
  padding: 8px 34px;
}

.venue-option .box-wrap .heading {
  margin-left: 0;
  text-align: left;
  font-size: 28px;

  span {
    font-size: 20px;
  }
}

.venue-option .box-wrap p {
  font-size: 20px;
}

.venue-option .box-wrap .heading::after {
  top: auto;
  bottom: 0;
  left: 0;
}

.form-check-label .lebel-span {
  font-size: 13px;
}

.blogs .like-text h2 {
  font-size: 120px;
}

.like-carousel .owl-item a img {
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.new_bg {
  background: #e6e1da;
}

.directory-head.venuedetails-pagewrap.pb-1 {
  ul {
    font-family: "Cormorant Garamond";

    li {
      a {
        font-family: "Cormorant Garamond";
      }
    }

    &.prople {
      align-items: center;
    }
  }
}

footer {
  .footer-menu {
    .footer-menu-list {
      &.menu2 {
        li {
          &.footer-sign {
            .vendor-signUp {
              color: var(--white-color) !important;
              font-family: var(--heading-font);
              font-size: 20px;
              margin-left: 0;
              text-decoration: none;
            }
          }
        }
      }
    }
  }
}

.team-img {
  position: relative;
}

/* Badge position */
.ai-badge-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

/* Badge image */
.ai-badge {
  width: 120px;
  transition: all 0.3s ease;
}

/* Glow effect */
.ai-badge-wrapper:hover .ai-badge {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

/* Tooltip */
.ai-tooltip {
  position: absolute;
  bottom: -45px;
  right: 0;
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

/* Show tooltip */
.ai-badge-wrapper:hover .ai-tooltip {
  opacity: 1;
  transform: translateY(0);
}

#atmosphere {
  .white-hover {
    &.perfect_for {
      font-family: "Fallbreeze";

      h6 {
        font-family: "Bandung Signature Alt";
        font-size: 66px;
      }

      ul {
        font-family: "Fallbreeze";

        li {
          font-family: "Fallbreeze";
          font-size: 26px;
        }
      }
    }
  }
}

.distance_mile {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.grid-box {
  .box-hover {
    &.btn_wrap {
      position: relative;

      img {
        height: 100%;
      }

      .bride-button {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);

        a {
          color: #fff !important;

          &:hover {
            color: #000 !important;
          }
        }
      }
    }
  }
}

/* sourav 16/03/2026 */
#editor .bride-buttontwo {
  border: 1px solid #00000078;
}

#atmosphere .perfect_for ul {
  padding-left: 20px;
}

.map {
  z-index: -1;
}

.map iframe {
  box-shadow: 0 0 10px #00000038;
}

#inquire {
  margin-top: 40px !important;
}

#atmosphere .perfect_for ul li {
  font-family: "Inter" !important;
  font-size: 22px !important;
}

/* #inquire ul li:nth-child(1) img{
    width: 15px;
} */
#inquire .details-contact-form select {
  outline: none;
  border-radius: 10px;
  line-height: 31px;
  box-shadow: none;
  color: #212529bf !important;
}

#inquire .details-contact-form select option {
  color: #212529bf !important;
}

#atmosphere .white-hover.perfect_for h6 {
  font-family: "Cormorant Garamond" !important;
  font-size: 45px !important;
}

.blog-post.blog-post-venue-detail h2 {
  padding-top: 0;
  padding-bottom: 100px;
}

.details-contact select option {
  background-color: #ced4da;
}

/* .details-contact select option:hover{
    background-color: #000;

} */

/* sourav 20/03/2026 */
.footer-part .logo p {
  font-size: 16px;
  color: #f4eee8;
}

.footer-part .logo {
  margin-bottom: 40px;
}

.footer-part .logo a {
  margin-bottom: 20px;
  display: block;
}

.footer-part .footer-menu .footer-menu-list li a {
  font-size: 16px;
  color: #f4eee8;
}

.footer-part .footer-menu .footer-menu-list h6 {
  font-size: 15px;
  font-weight: 600;
  color: #b79263;
}

.footer-part .tab h6 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b79263;
}

.footer-part .tab p {
  font-size: 16px;
  color: #f4eee8;
}

/* .footer-part .button-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
} */
.footer-part .button-wrapper {
  margin-top: 50px;
}

.footer-part .button-wrapper span {
  display: block;
  margin-bottom: 15px;
}

.footer-part .button-wrapper span a {
  color: #f4eee8;
  /* width: 100%; */
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.footer-part .button-wrapper span a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  content: "";
}

/* .footer-part .button-wrapper span a::before{
   position: absolute;
   width: 100%;
   height: 1px;
   background-color: #fff;
   bottom: 0;
   left: 0;
   content: "";
} */
.footer-part .button-wrapper span a:hover::after {
  background-color: #b79263;
}

.footer-part .button-wrapper span a:hover {
  color: #b79263;
}

.footer-part .tab {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-part .bottom-footer {
  border-top: 1px solid #b79263;
  margin-top: 50px;
  padding-bottom: 30px;
}

.footer-part .bottom-footer .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.footer-part .bottom-footer .icon-wrapper span {
  flex: 0 0 50px;
  height: 50px;
}

.footer-part .bottom-footer .icon-wrapper span a {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: block;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-part .bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-part .bottom-footer .icon-wrapper span a i {
  color: #fff;
}

.footer-part .bottom-footer .icon-wrapper span a:hover {
  border-color: #b87333;
}

.footer-part .bottom-footer .icon-wrapper span a:hover i {
  color: #b87333;
}

.venue-detail-popup .modal-dialog {
  max-width: 700px;
  border-radius: 12px;
  width: 100%;
}

.venue-detail-popup .modal-body .heading h3 {
  font-size: 40px;
  color: #b87333;
}

.venue-detail-popup .modal-body .heading {
  text-align: center;
  margin-bottom: 30px;
}

.venue-detail-popup .modal-body .heading p {
  font-size: 15px;
  font-family: "Inter";
}

.venue-detail-popup label {
  display: block;
  font-size: 17px;
  font-family: "Inter";
  font-weight: 600;
  /* color: #B87333; */
}

.venue-detail-popup .modal-body .form-fild input {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
  background: transparent;
  height: 49px;
  padding: 0 !important;
  transition: all 0.2s;
  margin-bottom: 30px;
}

.venue-detail-popup .modal-header {
  padding: 0;
  border: none;
}

.venue-detail-popup .modal-content {
  padding: 40px 50px 50px 50px;
}

.venue-detail-popup .modal-body .form-fild select {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
  background: transparent;
  height: 49px;
  padding: 0 !important;
  transition: all 0.2s;
  margin-bottom: 30px;
}

.venue-detail-popup .modal-body .form-fild ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.venue-detail-popup .modal-body .form-fild ul li {
  display: flex;
  align-items: center;
  width: 40%;
  gap: 20px;
  /* justify-content: space-between; */
}

.venue-detail-popup .modal-body textarea {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0;
  background: transparent;
  height: 100px !important;
  margin-top: 10px;
  padding: 0 !important;
  transition: all 0.2s;
  margin-bottom: 30px;
}

.venue-detail-popup .modal-header .btn-close {
  border: 1px solid #000;
}

.venue-detail-popup .modal-body button {
  font-weight: 400;
  font-size: 16px;
  display: flex;
  margin: 20px auto 0 auto;
  /* justify-content: center;
    align-items: center; */
}

#atmosphere .white-hover.perfect_for ul li {
  list-style: disc;
  font-size: 16px !important;
}

#stay p {
  font-size: 19px;
}

.modal.fade.venue-detail-popup ul li input {
  margin-bottom: 0;
}

.modal.fade.venue-detail-popup ul {
  margin-bottom: 20px;
}

.map.venue-map {
  margin-top: 0;
}

.tab-content#myTabContent {
  margin-top: 102px;
}

/* .home-slider.index-slider.vendor-icon-slider .col-md-2{
    display: none;
} */
/* .home-slider.index-slider.vendor-icon-slider .owl-stage-outer .owl-item .item .images .first{
    left: 41px;
 }
  .home-slider.index-slider.vendor-icon-slider .owl-stage-outer .owl-item .item .image .first{
    left: 48px;
 } */
.tab-content.tab-content-2#myTabContent {
  padding-top: 0;
  margin-top: 0;
}

.tab-content#myTabContent .dashboard-directory {
  padding-top: 10px;
}

.wedding-design-section {
  text-align: center;
}

.wedding-design-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.wedding-design-section p {
  font-size: 29px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
}

.wedding-design-section a {
  text-align: center;
  margin-bottom: 35px;
}

.wedding-design-section video {
  width: 100%;
}

.blog-post.blog-post-venue-detail.venue-page-blog-post-section h2 {
  padding-bottom: 0;
}

.blog-post.blog-post-venue-detail.venue-page-blog-post-section p {
  font-size: 24px;
  font-weight: 500;
  max-width: 575px;
  width: 100%;
  margin: 0 auto 15px auto;
}

.blog-post.blog-post-venue-detail.venue-page-blog-post-section {
  padding-top: 80px;
}

.honeymoon-luxury.honeymoon-luxury-venue-section {
  /* margin-top: 30px; */
  background-color: #fafafa;
  padding: 70px 0;
}

.vendor.venue-vendor.aos-init.aos-animate .headding-text {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}

.back-video-section video {
  width: 100%;
}

.back-video-section .video {
  position: relative;
}

.back-video-section .video .button-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.back-video-section .video .button-wrapper a {
  width: 300px;
}

.back-video-section {
  padding-bottom: 100px;
}

.vendor.venue-vendor.venue-vendor-section .buttonh-wrap {
  margin-top: 30px;
}

.vendor.venue-vendor.venue-vendor-section {
  padding-bottom: 100px;
}

.blog-post.blog-post-venue-detail.venue-page-blog-post-section .blog-post-side-img2 {
  bottom: -52% !important;
  z-index: -2 !important;
}

.honeymoon-luxury.honeymoon-luxury-venue-section .luxury-box {
  position: relative !important;
  z-index: 4 !important;
}

.honeymoon-luxury.honeymoon-luxury-venue-section .top-heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-slider.index-slider.vendor-icon-slider .item .images a .owl-item-text span {
  opacity: 0;
  transition: 0.4s;
}

.home-slider.index-slider.vendor-icon-slider .item .images a:hover .owl-item-text span {
  opacity: 1;
}

#myTabContent .page-link {
  color: #000 !important;
  border: 1px solid #000;
  background-color: #fff;
  outline: none;
}

#myTabContent .pagination {
  justify-content: end;
  margin-top: -15px;
}

.tab-content.tab-content-2 .blog-post.vendor-post .blog-post-box {
  /* margin-bottom: 45px ; */
}

.tab-content.tab-content-2 .blog-post.vendor-post .gift-button.gift-blog {
  margin-top: 20px;
}

.tab-content.tab-content-2#myTabContent .dashboard-directory.vendor-dashboard .heading h2 {
  text-align: left;
  font-size: 60px;
}

.blog-post.blog-post-venue-detail.venue-page-blog-post-section h2 {
  margin-bottom: 0;
}

.vendor.venue-vendor.venue-vendor-section .vendor-site-img img {
  height: 533px;
}

.farms-image .image .first.first-3 {
  /* left: 0px; */
  left: 23%;
}

/* ===========sourav    07/04/2026 */

.venue_directory-banner {
  background-image: url(../images/venue_directory-image.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 204px;
  margin-top: 91px;
  /* padding-bottom: 90px; */
  text-align: center;
  position: relative;
  padding-bottom: 180px;
}

.venue_directory-banner h1 {
  font-size: 70px;
  font-weight: 500;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  padding-bottom: 20px;
}

.venue_directory-banner p {
  font-size: 22px;
  font-family: "Inter", sans-serif;
  max-width: 890px;
  width: 100%;
  margin: 0 auto;
  color: #f5ece7;
}

.banner-dottom.enue_directory.vendor_directory-section .search {
  padding-left: 30px;
}

.banner-dottom.enue_directory.vendor_directory-section .search-wrapper {
  position: relative;
  width: 100%;
}

.banner-dottom.enue_directory.vendor_directory-section .search-wrapper i {
  position: absolute;
}

.banner-dottom.enue_directory.vendor_directory-section .search::placeholder {
  color: #554746;
}

.banner-dottom.enue_directory.vendor_directory-section select option {
  color: #24211e !important;
  font-family: "Inter", sans-serif;
}

.venue_directory-banner form .input-fild .form-control {
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 45px;
  width: 100%;
  font-size: 16px;
  padding: 0 15px 0 40px;
  border-radius: 4px;
}

.banner-dottom.enue_directory .filters select,
.filters input::placeholder {
  color: #24211e !important;
}

.venue_directory-banner form .input-fild .form-select.form-select-sm {
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 45px;
  width: 100%;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 4px;
}

.venue_directory-banner .form-wrapper {
  margin-bottom: -22px;
  padding-top: 90px;
}

.venue_directory-banner form .dark-venue_directory {
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 45px;
  width: 100%;
  padding: 0 15px;
  background-color: #3b3826;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}

.venue_directory-banner form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.venue_directory-banner form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.venue_directory-banner form input[type="search"] {
  appearance: textfield;
}

.venue_directory-banner form .input-fild {
  position: relative;
}

.venue_directory-banner form .input-fild span i {
  position: absolute;
  top: 14px;
  left: 17px;
  font-size: 16px;
  color: #524b44;
  font-weight: 600;
}

/* venue_directory-section */
.venue_directory-section {
  padding: 10px 0 0px 0;
  text-align: center;
}

.venue_directory-section .heading h6 {
  font-size: 27px;
  color: #0d0c0b;
  font-weight: 600;
  position: relative;
  display: inline-block;
  background-color: #f4eee8;

  padding: 0 20px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 45px;
  position: relative;
  z-index: 2;
}

.venue_directory-section .con-tainer .heading {
  position: relative;
}

.venue_directory-section .con-tainer .heading .line {
  position: absolute;
  top: 67px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #7b776b4d;
}

/* .venue_directory-section .heading h6::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 12px;
    content: "";
    background-color: #7B776B;
    width: 100%;
    height: 3px;
} */

/* .venue_directory-section .heading h6::before {
    position: absolute;
    left: auto;
    right: -95px;
    bottom: 0;
    top: 12px;
    content: "";
    background-color: #7B776B;
    width: 82px;
    height: 3px;
} */

.venue_directory-section .box {
  width: 100%;
  border: 1px solid #bfbab4;
  text-align: left;
  overflow: hidden;
}

.venue_directory-section .box .text {
  padding: 15px 20px 20px 29px;
}

.venue_directory-section.vendor.vendor-section-2.two .box .text {
  min-height: 115px;
}

.venue_directory-section .box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.venue_directory-section .box h5 {
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  color: #121010;
  font-family: "Cormorant Garamond", serif;
  line-height: 34px;
}

.venue_directory-section .box .text p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 20px;
  color: #7e7170;
}

.venue_directory-section .vendor-button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.venue_directory-section .box .text ul li {
  font-size: 16px;
  color: #b58d73;
  font-family: "Inter", sans-serif;
}

.venue_directory-section .box .text ul {
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
  padding: 8px 0;
  margin-top: 10px;
  margin-bottom: 15px;
}

.venue_directory-section .box .text ul+p {
  margin-bottom: 22px;
}

.venue_directory-section .box .text span a {
  /* background-color: #393825; */
  font-size: 16px;
  color: #fff;
  padding: 10px 25px 10px 25px;
}

.venue_directory-section .box {
  margin-bottom: 20px;
}

.venue_directory-section .page-link {
  border: none;
  color: #000;
}

.venue_directory-section .page-link:hover {
  background-color: transparent;
  outline: none;
  color: #000;
  border-bottom: 1px solid #000;
  border-radius: 0;
}

.venue_directory-section .page-item:not(:first-child) .page-link {
  margin-left: 5px;
}

.venue_directory-section .page-item.disabled a {
  color: #000;
  font-family: "Inter", sans-serif;
}

/* .venue-cta-2 */
.venue-cta-2 .content {
  text-align: center;
}

.venue-cta-2 .content h2 {
  font-size: 55px;
  font-family: "Cormorant Garamond", serif;
  color: #42271d;
  margin-bottom: 15px;
}

.venue-cta-2 .content p {
  color: #24211e;
}

.venue-cta-2 .content h2::after {
  position: absolute;
  top: 22px;
  left: -142px;
  right: auto;
  bottom: 0;
  content: "";
  background-color: #000;
  width: 127px;
  height: 3px;
}

.venue-cta-2 .content h2::before {
  position: absolute;
  top: 26px;
  left: auto;
  right: -142px;
  bottom: 0;
  content: "";
  background-color: #000;
  width: 127px;
  height: 3px;
}

.venue-cta-2 .content p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-bottom: 40px;
}

.venue-cta-2 .content a {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #3b3a26;
  padding: 12px 35px;
  color: #fff;
  border-radius: 4px;
  position: relative;
  transition: 0.4s;
}

.venue-cta-2 .content a:hover {
  background-color: transparent;
  color: #3b3a26;
  border: 1px solid #3b3a26;
}

.venue-cta-2 .content a::after {
  position: absolute;
  top: 22px;
  left: -142px;
  right: auto;
  bottom: 0;
  content: "";
  background-color: #000;
  width: 127px;
  height: 3px;
}

.venue-cta-2 .content a::before {
  position: absolute;
  top: 26px;
  left: auto;
  right: -142px;
  bottom: 0;
  content: "";
  background-color: #000;
  width: 127px;
  height: 3px;
}

.venue-cta-2 {
  padding-bottom: 70px;
}

/* ============================ vendor========================= */
.venue_directory-section.vendor .box .text {
  text-align: center;
}

.venue_directory-section.vendor .box {
  position: relative;
}

.venue_directory-section.vendor .box .text h5 {
  font-size: 27px;
  font-weight: 400;
  color: #fff;
}

.venue_directory-section.vendor .box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 10px 20px 10px;
}

.venue_directory-section.vendor .box .text a {
  padding: 5px 20px;
}

.venue_directory-banner .form-wrapper option {
  font-size: 16px;
}

.venue_directory-section.vendor .box h5 {
  margin-bottom: 10px;
}

/* ==============================vendor-directory-inner-page==================================== */

.vendor-directory-inner-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 90px;
  text-align: center;
  padding-top: 200px;
  padding-bottom: 60px;
  position: relative;
}

.vendor-directory-inner-banner::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.07);
  width: 100%;
  height: 100%;
}

.vendor-directory-inner-banner .banner-content {
  position: relative;
  z-index: 2;
}

.vendor-directory-inner-banner .banner-content h1 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 65px;
  font-weight: 400;
  color: #fff;
}

.vendor-directory-inner-banner .banner-content p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  max-width: 527px;
  width: 100%;
  margin: 0 auto;
}

.vendor-directory-form-section .text-wrapper p {
  font-family: "Inter", sans-serif !important;
  color: #5c4f46;
}

/* .form-wrapper */
.form-wrapper.bakers .form-wrapper {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0 50px 0;
}

.form-wrapper .heading-wrap {
  text-align: center;
}

.form-wrapper .heading-wrap h4 {
  font-size: 20px;
  color: #574e44;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.form-wrapper .heading-wrap h4::after {
  position: absolute;
  top: 12px;
  left: -110px;
  right: auto;
  bottom: 0;
  content: "";
  background-color: #574e44;
  height: 2px;
  width: 100px;
}

.form-wrapper .heading-wrap h4::before {
  position: absolute;
  top: 12px;
  left: auto;
  right: -110px;
  bottom: 0;
  content: "";
  background-color: #574e44;
  height: 2px;
  width: 100px;
}

.form-wrapper .nav-link {
  padding: 0 8px;
  background-color: transparent !important;
  color: #000 !important;
  width: 600;
}

/* .form-wrapper .nav-link:nth-child(2){

} */
.form-wrapper .nav.nav-pills {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 45px;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
}

.form-wrapper .form-wrap .input-fild input {
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 45px;
  width: 100%;
  font-size: 16px;
  padding: 0 15px 0 40px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
}

.form-wrapper .form-wrap .input-fild input::placeholder {
  color: #000;
}

.form-wrapper .form-wrap .input-fild select {
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 45px;
  width: 100%;
  font-size: 16px;
  padding: 0 15px 0 40px;
  border-radius: 4px;
}

.form-wrapper .form-wrap .dark-venue_directory {
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 45px;
  width: 100%;
  font-size: 16px;
  padding: 0 15px 0 40px;
  border-radius: 4px;
}

.form-wrapper .form-wrap .input-fild i {
  position: absolute;
  top: 14px;
  left: 17px;
  font-size: 16px;
  color: #524b44;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.form-wrapper .venue_directory-section .text ul {
  display: flex;
  align-items: center;
  gap: 5px !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 8px 0;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.form-wrapper .venue_directory-section ul li {
  font-size: 16px;
  color: #a37a57;
  font-family: "Inter", sans-serif;
}

.form-wrapper .venue_directory-section ul li i {
  color: #a37a57;
}

.form-wrapper .venue_directory-section .text a span i {
  color: #000;
  font-size: 20px;
  /* font-family: "Inter", sans-serif; */
}

.form-wrapper .venue_directory-section .text .location {
  /* color: #000; */
  font-size: 14px !important;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-wrapper .venue_directory-section .text .location:hover {
  color: #000;
}

.form-wrapper .venue_directory-section .box .text ul+p {
  margin-bottom: 13px !important;
  font-family: "Inter", sans-serif;
}

.form-wrapper .venue_directory-section .box .price {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: start;
  padding: 10px 0 10px 0;
  margin-bottom: 10px;
}

.form-wrapper .venue_directory-section .box .price span {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.form-wrapper .venue_directory-section .box .button a {
  width: 100% !important;
  border-radius: 4px !important;
  display: block !important;
  font-family: "Inter", sans-serif;
}

.form-wrapper .venue_directory-section .box .button {
  width: 100% !important;
  display: block !important;
  text-align: center !important;
}

.form-wrapper .venue_directory-section .box .text h5 {
  margin-bottom: 0px !important;
  font-family: "Cormorant Garamond", serif;
}

.form-wrapper .venue_directory-section .section-top {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.form-wrapper .venue_directory-section .section-top .nav.nav-pills {
  width: 100px;
  height: 40px;
}

.form-wrapper .venue_directory-section .section-top {
  border-top: 1px solid #000;
  padding-top: 17px;
  margin-top: 40px;
  margin-bottom: 18px;
}

.form-wrapper .venue_directory-section .section-top .nav.nav-pills button i {
  color: #000 !important;
}

.form-wrapper .venue_directory-section .section-top .input-fild select {
  border: 1px solid #00000017;
  background-color: #fff;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 40px;
  width: 100%;
  font-size: 16px;
  padding: 0 15px 0 40px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
}

.form-wrapper .venue_directory-section .box .immage-wrap span {
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  padding: 8px 20px;
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.form-wrapper .venue_directory-section .botton-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.form-wrapper .venue_directory-section .botton-wrapper span a {
  border: 1px solid #00000017;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  box-shadow: 2px 4px 10px 3px #0000001a;
  height: 40px;
  font-size: 16px;
  padding: 12px 30px 12px 30px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
}

.form-wrapper .page-link {
  background-color: transparent !important;
}

.form-wrapper .Page .pagination {
  margin-top: 30px !important;
}

.form-wrapper .row-view .box {
  display: flex;
  align-items: center;
  justify-content: start;
}

.form-wrapper .row-view .immage-wrap {
  flex: 0 0 41%;
}

.form-wrapper .row-view .box .text .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-wrapper .row-view .box .text .wrapper ul {
  flex: 0 0 60%;
}

.form-wrapper .row-view .box .text p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.form-wrapper .row-view .box .price {
  padding-bottom: 3px;
}

.form-wrapper .last-box-wrapper .box {
  margin-top: 50px;
}

.form-wrapper .dark-venue_directory {
  background-color: #39392d !important;
  color: #fff;
}

.form-wrapper.caterers .button .dark-venue_directory {
  padding: 12px 40px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.form-wrapper.caterers .button {
  margin-top: 20px;
}

/* .venue_directory-banner.djs .col-lg-11 .form-wrapper{
    margin-bottom: -70px;
} */
.venue_directory-section.djs .box .text ul {
  border: none !important;
  gap: 5px;
  justify-content: center;
}

.venue_directory-section.djs .box .text ul {
  margin-top: 4px;
  margin-bottom: 3px;
}

.venue_directory-section.djs .box {
  text-align: center !important;
}

.form-wrapper.florists .form-wrap .input-fild select {
  padding: 0 46px 0 40px;
}

.form-wrapper.florists .florists-catagori {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}

.form-wrapper.florists .florists-catagori a {
  padding: 8px 20px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #b4a69e;
  font-size: 20px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-family: "Inter", sans-serif;
  transition: 0.4s;
}

.form-wrapper.florists .florists-catagori a:hover {
  background-color: #39392d;
  color: #fff;
}

.form-wrapper.florists .box {
  border-bottom: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  background: transparent !important;
  border-left: none;
  border-right: none;
  padding: 30px 0;
}

/* .form-wrapper.florists .col-lg-12:last-child .box{
    border: none;
} */

/* .form-wrapper.florists .box:last-child{
    border: none ;
} */
.form-wrapper.florists .box .text p {
  line-height: 35px;
  font-family: "Inter", sans-serif;
}

.form-wrapper.florists .heading-wrap {
  margin-top: 30px;
}

.form-wrapper.florists .venue_directory-section .box {
  margin-bottom: 0 !important;
}

.form-wrapper.florists .box .text h5 {
  margin-bottom: 10px !important;
  font-family: "Cormorant Garamond", serif;
}

.form-wrapper.caterers.makeup .heading-wrap p {
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}

.form-wrapper.caterers.makeup .box .text h5 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
}

.venue-cta-2.florists {
  padding-top: 60px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .section-wrap{
        padding:14px 10px;
    } */
/* 
    .artist-card{
        background:#f5f1ee;
        border:1px solid #d8d0cb;
        overflow:hidden;
        height:100%;
        box-shadow:0 0 0 1px rgba(0,0,0,0.02);
        transition:0.3s ease;
    }

    .artist-card:hover{
        transform:translateY(-4px);
    }

    .artist-img{
        width:100%;
        height:105px;
        object-fit:cover;
        display:block;
    }

    .artist-content{
        padding:7px 10px 10px;
    }

    .artist-name{
        font-family:'Cormorant Garamond', serif;
        font-size:14px;
        line-height:1.1;
        font-weight:700;
        color:#3b342e;
        margin-bottom:4px;
    }

    .rating-row{
        font-size:9px;
        color:#9b8a62;
        margin-bottom:4px;
        display:flex;
        align-items:center;
        flex-wrap:wrap;
        gap:3px;
    }

    .stars{
        letter-spacing:1px;
        color:#c49a42;
        font-size:9px;
    }

    .location{
        color:#8f8378;
        font-size:8px;
    }

    .desc{
        font-size:8px;
        line-height:1.45;
        color:#61584f;
        min-height:32px;
        margin-bottom:8px;
    }

    .btn-wrap{
        display:flex;
        gap:5px;
    }

    .custom-btn{
        flex:1;
        background:#2e3023;
        color:#fff;
        border:none;
        font-size:8px;
        padding:5px 4px;
        line-height:1;
        border-radius:0;
        transition:0.3s;
    }

    .custom-btn:hover{
        background:#1f2117;
        color:#fff;
    }


    @media(max-width:767px){
        .artist-img{
            height:220px;
        }

        .artist-name{
            font-size:22px;
        }

        .rating-row{
            font-size:12px;
        }

        .stars{
            font-size:12px;
        }

        .location{
            font-size:11px;
        }

        .desc{
            font-size:13px;
            min-height:auto;
        }

        .custom-btn{
            font-size:12px;
            padding:10px;
        }
    } */

/* .title{
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    font-weight:600;
    color:#2f2a25;
    text-align:center;
    line-height:1.1;
    margin-bottom:3px;
}

.subtitle{
    text-align:center;
    font-size:12px;
    color:#4e463f;
    margin-bottom:12px;
}

.search-box{
    max-width:1120px;
    margin:auto;
}

.custom-control{
    height:42px;
    border:1px solid #cfc8c2;
    background:#f8f6f4;
    border-radius:2px;
    font-size:14px;
    color:#403a34;
    box-shadow:none !important;
}

.custom-control:focus{
    border-color:#b9afa7;
}

.search-input-wrap{
    position:relative;
}

.search-icon{
    position:absolute;
    top:50%;
    left:14px;
    transform:translateY(-50%);
    font-size:14px;
    color:#555;
    z-index:5;
}

.search-input{
    padding-left:38px;
}

.search-btn{
    width:100%;
    height:42px;
    background:#4a4933;
    border:none;
    color:#fff;
    font-size:14px;
    font-weight:500;
    border-radius:2px;
    transition:.3s;
}

.search-btn:hover{
    background:#383725;
}

.filters{
    text-align:center;
    margin-top:10px;
    font-size:13px;
    color:#4e463f;
}

.filters label{
    margin:0 8px;
    cursor:pointer;
}

.filters input{
    margin-right:4px;
    transform:translateY(1px);
}


@media(max-width:991px){
    .title{
        font-size:24px;
    }
}

@media(max-width:767px){
    .title{
        font-size:32px;
    }

    .subtitle{
        font-size:14px;
        padding:0 10px;
    }

    .custom-control,
    .search-btn{
        height:48px;
        font-size:15px;
    }

    .filters{
        font-size:14px;
    }

    .filters label{
        display:block;
        margin:6px 0;
    }
} */
.hair-banner {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form-wrapper.hair .venue_directory-section .box img {
  height: 250px;
}

.form-wrapper.hair .heading-wrapper {
  text-align: center;
  padding-bottom: 40px;
}

.form-wrapper.hair .heading-wrapper h2 {
  font-size: 45px;
  font-family: "Cormorant Garamond", serif;
}

.form-wrapper.hair .chackbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.form-wrapper.hair .chackbox-wrapper .chack-box input {
  border: 1px solid #000;
}

.form-wrapper.hair .button-wrap {
  display: flex !important;
  align-items: center;
  background-color: #393825;
  border-radius: 4px;
  justify-content: space-around;
  gap: 0;
}

.form-wrapper.hair .button-wrap {
  margin-top: 15px;
  margin-bottom: 5px;
}

.form-wrapper.hair .button-wrap a {
  width: 50%;
  transition: 0.3s;
}

.form-wrapper.hair .button-wrap a:hover {
  background-color: #000;
}

.form-wrapper.hair .button-wrap a:nth-child(1) {
  border-right: 2px solid #000;
}

.form-wrapper.bakers.photo .form-wrap .dark-venue_directory {
  padding: 0 15px 0 15px;
}

.form-wrapper.photographers .venue_directory-section .botton-wrapper span {
  margin-bottom: 20px;
}

.form-wrapper.florists.planners .form-wrap {
  position: relative;
  margin-top: -30px;
  z-index: 4;
}

.form-wrapper.florists.planners .florists-catagori a {
  border-radius: 30px;
  background-color: #ebdddc;
  transition: 0.3s;
}

.form-wrapper.florists.planners .florists-catagori a:hover {
  background-color: #000;
  border-color: #000;
}

.form-wrapper.hair .form-wrap .dark-venue_directory {
  padding: 0 15px 0 15px;
}

.form-wrapper.hair .chackbox-wrapper .chack-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-wrapper.hair .box p {
  padding-top: 10px;
  padding-bottom: 6px;
}

.cta-5 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid #000;
  padding: 80px;
}

.cta-5 h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.vendor-directory-inner-banner.planners {
  padding-top: 100px;
  padding-bottom: 200px;
}

.form-wrapper.florists.planners .florists-catagori {
  margin-top: 10px;
}

.form-wrapper.florists.planners .box .text h5 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

.form-wrapper.florists.planners .box .text .location {
  margin-top: 20px;
  font-size: 18px !important;
}

.vendor-directory-inner-banner.planners h1 {
  font-family: "Cormorant Garamond", serif !important;
}

.vendor-directory-inner-banner.photographers {
  padding-top: 200px;
}

.vendor-directory-inner-banner.photographers h1 {
  font-family: "Cormorant Garamond", serif !important;
}

.form-wrapper.rentals .box {
  height: 100%;
  margin-bottom: 0 !important;
}

.form-wrapper.rentals .box .text {
  text-align: center;
}

.form-wrapper.rentals .box .text h5 {
  margin-top: 15px;
  margin-bottom: 10px !important;
}

.form-wrapper.rentals.caterers .venue_directory-section .Page.navigation.example .pagination {
  margin-top: 60px;
}

.banner-dottom.enue_directory .filters {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.banner-dottom.enue_directory .filters select,
.filters input {
  padding: 10px 12px;
  border: 1px solid #d6cfc6;
  background: #ffffff00;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  border-radius: 3px;
}

.banner-dottom.enue_directory .filters select {
  width: 200px;
  cursor: pointer;
}

.banner-dottom.enue_directory .filters input {
  flex: 1;
}

/* Bottom Section */
.banner-dottom.enue_directory .bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d6cfc6;
  padding-top: 15px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #d6cfc6;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.banner-dottom.enue_directory .clear {
  cursor: pointer;
  color: #777;
  font-family: "Inter", sans-serif;
}

.banner-dottom.enue_directory .sort span {
  margin-left: 10px;
  cursor: pointer;
}

.banner-dottom.enue_directory .sort .active {
  font-weight: bold;
  color: #b79263;
}

.banner-dottom.enue_directory {
  /* padding-bottom: ; */
  padding-top: 40px;
  background-color: #f8f3ef;
}

.banner-dottom.enue_directory.venue_directory-section .heading {
  padding: 0;
  margin: 0;
}

.banner-dottom.enue_directory.venue_directory-section .heading h6 {
  margin-bottom: 0;
  padding: 0;
  font-size: 40px;
  margin: 0;
  font-family: "Cormorant Garamond", serif !important;
}

.banner-dottom.enue_directory.vendor_directory-section .sort {
  color: #b79263;
}

.banner-dottom.enue_directory.vendor_directory-section .sort .active select {
  border: none;
  color: #b79263;
}

.banner-dottom.enue_directory.vendor_directory-section .heading h6 {
  margin-bottom: 55px;
}

.venue-cta-2.vendor-section h2::before {
  display: none;
}

.venue-cta-2.vendor-section h2::after {
  display: none;
}

.venue-cta-2.vendor-section a::after {
  display: none;
}

.venue-cta-2.vendor-section a::before {
  display: none;
}

.venue-cta-2.vendor-section a {
  background-color: #a1785f;
}

.custom-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.custom-card h6 {
  font-size: 14px;
  color: #7a6a5c;
}

/* Inputs */
.form-control,
.form-select {
  border-radius: 6px;
  border: 1px solid #e5ded8;
  font-size: 13px;
  padding: 8px;
}

.form-label {
  font-size: 12px;
  margin-top: 10px;
  color: #6b5e52;
}

/* Color palette */
.color-box {
  width: 26px;
  height: 18px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 6px;
}

/* Mini vendor cards */
.vendor-card {
  background: #faf7f4;
  border-radius: 10px;
  padding: 6px;
  text-align: center;
}

.vendor-card img {
  width: 100%;
  border-radius: 8px;
}

.vendor-card p {
  font-size: 10px;
  margin: 5px 0;
}

.vendor-card button {
  font-size: 10px;
  border-radius: 5px;
  padding: 3px 6px;
  background: #e8d8cc;
  border: none;
}

/* RIGHT SIDE */
.title {
  font-size: 36px;
  line-height: 1.3;
}

.title em {
  font-style: italic;
}

.desc {
  font-size: 15px;
  color: #6d5f52;
}

/* Feature list */
.feature h6 {
  font-size: 15px;
  margin-bottom: 3px;
}

.feature p {
  font-size: 20px;
  color: #7a6a5c;
   font-family: "Inter";
}

/* Buttons */
.btn-main {
  background: #a6785d;
  color: white;
  border-radius: 6px;
  padding: 10px 18px;
}

.btn-main:hover {
  background: #8c5f48;
}

.btn-outline-custom {
  border: 1px solid #d8cfc8;
  color: #5c4f44;
  border-radius: 6px;
}

.venue_directory-section.all-venue .heading h6::after {
  display: none;
}

.venue_directory-section.all-venue .heading h6::before {
  display: none;
}

.venue_directory-section.all-venue .heading {
  position: relative;
}

.venue_directory-section.all-venue .heading .line {
  position: absolute;
  top: 63px;
  width: 100%;
  height: 1px;
  background-color: #e3dcda;
}

.venue_directory-section.all-venue .heading h6 {
  padding: 1px 20px;
  z-index: 2;
  color: #2b2020;
  font-size: 40px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif !important;
}

.venue_directory-section .box .text span {
  /* width: 100%; */
  text-align: center;
  /* display: block; */
  /* margin-top: 25px; */
}

.venue_directory-section .box .text span a {
  padding-left: 40px;
  padding-right: 40px;
  transition: 0.3s;
}

.venue_directory-section .box .text span {
  background-color: #9e775a !important;
  padding: 12px 0px 12px 0;
  border-radius: 3px;
}

.venue_directory-section .box .text span a:hover {
  background-color: #9e775a !important;
  color: #000;
}

.venue_directory-section .box .text span i {
  color: #fff;
  font-weight: 600;
}

.venue_directory-section {
  background-color: #f8f2f0;
  padding-bottom: 25px;
}

/* vendor-directory-form-section */
.vendor-directory-form-section {
  background-color: #f6f1eb;
  padding: 60px 0;
}

.vendor-directory-form-section .image img {
  width: 90%;
}

.vendor-directory-form-section .text-wrapper h2 {
  font-size: 55px;
  font-family: "Cormorant Garamond", serif;
  color: #44312c;
}

.vendor-directory-form-section .text-wrapper ul li {
  display: flex;
  align-items: start;
  gap: 30px;
}

.vendor-directory-form-section .text-wrapper ul li img {
  width: 70px;
}

.vendor-directory-form-section .text-wrapper ul li .text h5 {
  font-size: 34px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif !important;
}

.vendor-directory-form-section .text-wrapper ul li .text p {
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.vendor-directory-form-section .text-wrapper ul li .text h5 {
  color: #483934;
  font-family: "Cormorant Garamond", serif !important;
}

.vendor-directory-form-section .text-wrapper ul li .text p {
  color: #5c4f46;
  font-family: "Inter", sans-serif;
}

.vendor-directory-form-section .text-wrapper ul {
  padding-top: 40px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.vendor-directory-form-section .text-wrapper .button-wrapper {
  display: flex;
  gap: 20px;
}

.vendor-directory-form-section .text-wrapper .button-wrapper span:nth-child(1) a {
  background-color: #a67d62;
  color: #fff;
  padding: 13px 25px;
  border-radius: 3px;
}

.vendor-directory-form-section .text-wrapper .button-wrapper span:nth-child(1) a:hover {
  background-color: transparent;
  color: #b79263;
  border: 1px solid #b79263;
}

.vendor-directory-form-section .text-wrapper .button-wrapper span:nth-child(2) a {
  background-color: transparent;
  color: #a77d65;
  border: 1px solid #a77d65;
  padding: 13px 25px;
  border-radius: 3px;
}

.vendor-directory-form-section .text-wrapper .button-wrapper span:nth-child(2) a:hover {
  background-color: #a77d65;
  color: #fff;
}

.vendor-directory-form-section .text-wrapper .button-wrapper {
  margin-top: 70px;
}

.venue_directory-section .box .text {
  background-color: #fbf6f2;
}

.venue-cta-2.vendor-section {
  padding-top: 70px;
}

.venue_directory-section .page-item:not(:first-child) .page-link {
  background-color: transparent;
  border: 1px solid #bfbab4;
  width: 60px;
}

.page-link.previous {
  background-color: transparent !important;
  border: none !important;
}

.venue_directory-section.vendor .con-tainer .heading {
  position: relative;
}

.venue_directory-section.vendor .con-tainer .heading p {
  color: #4f3d3a;
}

.venue_directory-section.vendor .con-tainer .heading h2 {
  font-family: "Cormorant Garamond", serif;
  color: #442d20;
  font-size: 55px;
  background-color: #f7f0eb;
  padding: 0 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
  padding-bottom: 15px;
}

.venue_directory-section.vendor.vendor-section-2 {
  background-color: #f9eff1;
  padding-top: 50px;
  
}



.venue_directory-section.vendor .con-tainer .heading p {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  margin-bottom: 50px;
}

.venue_directory-section.vendor .con-tainer .heading .line {
  position: absolute;
  top: 63px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d6cfc6;
}

.venue_directory-section.vendor .box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f7f0ebe8;
  padding: 10px 10px 20px 10px;
}

.venue_directory-section.vendor.vendor-section-2 .box .text h5 {
  font-size: 35px;
  font-weight: 400;
  color: #24211e;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  text-shadow: none;
  margin-bottom: 15px;
}

.venue_directory-section.vendor.vendor-section-2 .box .text p {
  color: #24211e;
  text-shadow: none;
  font-family: "Inter", sans-serif;
}

.cta-section-2 {
  text-align: center;
  padding: 70px 0 0 0;
   background-color: #f9eff1 !important;
}

/* .cta-section-2 {
  background-image: url(../images/bg-color.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} */

.cta-section-2 h3 {
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  color: #4e3330;
}

.cta-section-2 h2 {
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  color: #24211e;
}

.cta-section-2 p {
  font-size: 22px;
  color: #6d5657;
  padding-bottom: 50px;
  border-bottom: 2px solid #7b776b4d;
  font-family: "Inter", sans-serif;
}

/* .venue_directory-section.vendor.vendor-section-2.vendor-section-4 {
  background-image: url(../images/bg-color.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} */

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 h2 {
  margin-bottom: 20px;
}

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 .box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 10px 10px 50px 10px;
}

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 .text h5 {
  color: #fff;
  font-size: 40px;
  /* font-family: Poppins, sans-serif; */
  /* font-family: "Inter", sans-serif; */
  font-family: "Cormorant Garamond", serif;
  font-weight: 800;
  padding-bottom: 10px;
}

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 .text {
  padding-bottom: 50px;
}

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 .text p {
  color: #fff;
  margin-bottom: 30px;
}

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 .text span a {
  background-color: #f0d8cf;
  padding: 13px 27px;
  border-radius: 3px;
  margin-bottom: 30px;
  color: #876458;
}

.banner-dottom.enue_directory.vendor_directory-section .sort .active select {
  background-color: #00000000 !important;
  outline: none;
}

.venue-cta-2.vendor-section {
  background-color: #fef6f4;
}

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 .heading h2 {
  background-color: #f9eff1 !important;
  color: #523435;
}

.vendor-directory-form-section {
  background-image: url(../images/form-image-3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  padding: 140px 0 40px 0;
}

.venue_directory-section.vendor.vendor-section-2 .box .text {
  min-height: 132px;
}

.venue_directory-section.vendor.vendor-section-2.vendor-section-4 .line .inner-line {
  margin-left: 26%;
  height: 100%;
  width: 48%;
  background-color: #f5e6e0;
}

@media only screen and (max-width: 1440px) {
  .venue_directory-section .box .text ul {
    gap: 8px;
  }

  .vendor-directory-form-section {
    background-size: contain;
  }

  .venue_directory-section .box .text ul li {
    font-size: 13px;
  }

  .vendor-directory-form-section .text-wrapper h2 {
    font-size: 46px;
  }

  .venue_directory-section.vendor.vendor-section-2 .box .text h5 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .venue_directory-section.vendor.vendor-section-2 .box .text {
    min-height: 108px;
  }

  .cta-section-2 h2 {
    font-size: 65px;
  }

  .venue_directory-section .box .text p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1366px) {
  .venue_directory-section.vendor.vendor-section-2 .box .text {
    min-height: 105px;
  }

  .vendor-directory-form-section .text-wrapper ul {
    gap: 20px;
  }

  .venue-cta-2 {
    padding-bottom: 0px;
  }

  .vendor-directory-form-section .text-wrapper .button-wrapper {
    margin-top: 45px;
  }
.venue_directory-section.vendor.vendor-section-2 {
        background-color: #f9eff1;
        padding-top: 0px;
    }

  .vendor-directory-form-section {
    background-size: contain;
    padding: 118px 0 129px 0;
  }
}

.venue_directory-section .box .text ul+p.p1 {
  margin-bottom: 40px;
}

.venue-cta-section {
  background: #faf3f1;
  padding-bottom: 70px;
  text-align: center;
}

/* LOAD MORE */
.cta-loadmore {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

/* HEADING WITH LINES */
.cta-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* COMMON LINE */
.cta-line {
  height: 1px;
  width: 400px;
  background: #d8d2cc;
}

.cta-line1 {
  height: 1px;
  width: 140px;
  background: #d8d2cc;
}

/* spacing between line and text */
.cta-loadmore .cta-line:first-child,
.cta-heading-wrap .cta-line:first-child {
  margin-right: 20px;
}

.cta-loadmore .cta-line:last-child,
.cta-heading-wrap .cta-line:last-child {
  margin-left: 20px;
}

/* HEADING */
.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  color: #3a3a3a;
  padding-left: 35px;
  padding-right: 35px;
}

.cta-pagination .page1 {
  width: 51px;
  /* same width for all */
  height: 33px;
  /* same height */
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ddd;
  font-size: 13px;
  cursor: pointer;
}

.cta-pagination-wrap .line {
  flex: 1;
  height: 1px;
  background: #d8d2cc;
  max-width: 455px;
}

.cta-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* SUBTEXT */
.cta-subtext {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 0 auto 35px;
  color: #666;
  line-height: 1.6;
}

/* BUTTON WRAP */
.cta-button-wrap {
  margin-bottom: 45px;
}

/* BUTTON STYLE */
.cta-btn {
  background: #ad8365;
  color: #fff;
  padding: 10px 26px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.cta-btn.large {
  padding: 12px 52px;
  font-size: 17px;
}

.cta-btn:hover {
  color: black;
}

/* PAGINATION */
.cta-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cta-pagination .page {
  border: 1px solid #ddd;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}

.cta-pagination .active {
  background: #eee;
}

.btn-load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #a77c5f;
  color: #fff;
  padding: 10px 46px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Arrow */

/* Hover */
.btn-load:hover {
  color: black;
}

.cta-section-2 h4 {
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
  color: #6d5657;
  margin-top: 13px;
}

.premium-match-section {
  background: #fbf6f3;
  padding: 52px 0 46px;
  position: relative;
  overflow: hidden;
}

.premium-match-heading {
  text-align: center;
  margin-bottom: 26px;
}

.premium-match-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 35px;
  line-height: 1.22;
  font-weight: 400;
  color: #38261e;
  margin: 0 0 14px;
}

.premium-match-heading p {
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.55;
  color: #2f1f19;
  font-family: "Playfair Display", serif;
}

.premium-card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1140px;
  margin: 0 auto;
}

.premium-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(70, 45, 35, 0.12);
}

.premium-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.premium-card-content {
  padding: 13px 18px 18px;
}

.premium-card-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 400;
  color: #58433e;
  margin: 0 0 8px;
}

.premium-card-content p {
  font-size: 20px;
  line-height: 1.35;
  color: #827472;
  margin: 0;
  font-family: "Playfair Display", serif;
}

@media (max-width: 991px) {
  .premium-card-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .premium-match-heading h2 {
    font-size: 22px;
  }

  .premium-card-row {
    grid-template-columns: 1fr;
  }
}

.heading-line {
  position: relative;
  margin: 30px 0;
}

/* FULL WIDTH LINE */
.heading-line h6 {
  text-align: center;
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  color: #1b1816;
}

/* LINE */
.heading-line h6::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d8d2cc;
  transform: translateY(-50%);
  z-index: 0;
}

/* TEXT (cuts the line) */
.heading-line h6 span {
  background: #f6f3f1;
  /* same as section bg */
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.premium-match-section {
  position: relative;
  background: #fef6f4;
  overflow: hidden;
}

/* COMMON */
.flower {
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.flower img {
  display: block;
  max-width: 220px;
  /* adjust size */
}

/* LEFT */
.flower-left {
  left: 0;
}

/* RIGHT */
.flower-right {
  right: 0;
}

/* KEEP CONTENT ABOVE FLOWERS */
.premium-match-section .container {
  position: relative;
  z-index: 2;
}

.banner-part.home .banner-text h1 {
  font-size: 5rem;
}

.banner-part.home .banner-text {
  /* color: rgb(0, 0, 0); */
  max-width: 582px;
  width: 100%;
}

.banner-part.home .bride-buttontwo {
  background-color: #f9ebd4;
  padding: 13px 27px;
  border-radius: 3px;
  margin-bottom: 30px;
  color: #333;
}

.banner-part.home .bride-buttonone {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  border: #fff 3px solid;
  color: var(--white-color);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.banner-part.home .bride-button {
  margin-right: 10px;
}

.banner-part.home .banner-text p {
  padding: 1rem 0 2.5rem 0;
}

.venueStyle.venue_directory-section .box {
  position: relative;
}

.venueStyle.venue_directory-section .box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  height: fit-content;
  width: fit-content;
  background-color: transparent;
  padding: 0 10px;
  text-align: center;
  margin: auto;
}

.venueStyle.venue_directory-section .box .text h5 {
  color: #fff;
  font-weight: bold;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 0 10px;
}

.venueStyle.venue_directory-section .box {
  margin-bottom: 0px;
}

.venueStyle,
.works {
  padding: 60px 0;
}

.works.venue_directory-section .box .text {
  width: 100%;
  border: 1px solid #bfbab4;
  text-align: center;
  overflow: hidden;
}

.works.venue_directory-section .box h5 {
  font-size: 22px;
  color: #725642;
}

.works.venue_directory-section .box img.icons {
  width: 60px;
  margin: 15px auto;
  height: auto;
  object-fit: contain;
}

.works.venue_directory-section .box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.works.venue_directory-section .box .text {
  padding: 15px 10px 20px;
  min-height: 212px;
}

.bride-buttontwo {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  background-color: #f9ebd4;
}

/* ─── DESIGN VISUALLY ──────────────────────────────────── */
section.design-visually {
  padding: 80px 0 90px;
}

.design-step {
  text-align: center;
  padding: 0 24px;
}

.design-step-icon {
  width: 66px;
  height: 66px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: var(--color-white);
  font-size: 22px;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.design-step:hover .design-step-icon {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.design-step h5 {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
}

/* ─── TOOL PREVIEW ─────────────────────────────────────── */
section.tool-preview {
  background: var(--color-white);
  padding: 72px 0 80px;
}

.tool-mockup {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.09);
  max-width: 740px;
  margin: 0 auto;
}

.mockup-topbar {
  background: #f5f3ef;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--color-border);
}

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-body {
  display: flex;
}

.mockup-main-img {
  flex: 1;
  min-height: 340px;
  overflow: hidden;
}

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

.mockup-sidebar {
  width: 210px;
  flex-shrink: 0;
  border-left: 1px solid var(--color-border);
  background: #fafaf8;
  padding: 20px 16px;
}

.mockup-label {
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.mockup-style-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 7px 11px;
  font-family: var(--body-font);
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.mockup-style-btn.active,
.mockup-style-btn:hover {
  border-color: var(--color-black);
  color: var(--color-black);
  background: var(--color-white);
}

.palette-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.style1 {
  z-index: 1;
}

.style1::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d8d2cc;
  transform: translateY(-50%);
  z-index: -1;
}

.venue_directory-section.all-venue.venueStyle.design-visually .heading-line h6 span {
  background: transparent;
}

.venue_directory-section.all-venue.venueStyle.design-visually .heading-line h6::before {
  content: "";
  position: absolute;
  top: 103%;
  left: 47%;
  width: 7%;
  height: 1px;
  background: #d8d2cc;
  transform: translateY(-50%);
  z-index: 0;
}


.app-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.window-header {
  background: linear-gradient(180deg, #E5E5E5 0%, #D4D4D4 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #C0C0C0;
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.traffic-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.traffic-light.red {
  background: #FF5F57;
}

.traffic-light.yellow {
  background: #FEBC2E;
}

.traffic-light.green {
  background: #28C840;
}

.content-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.image-viewer {
  flex: 1;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar {
  width: 340px;
  background: #FAFAFA;
  border-left: 1px solid #E5E5E5;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sidebar-header {
  padding: 20px 24px 0;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #333;
}

.tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 24px;
}

.tab {
  background: none;
  border: none;
  padding: 0 0 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab:hover {
  color: #666;
}

.tab.active {
  color: #333;
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #A58B72;
}

.sidebar-content {
  padding: 0 24px 24px;
  overflow-y: auto;
  flex: 1;
}

.section {
  margin-bottom: 32px;
}

.section-title {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.style-card {
  background: white;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.style-card:hover {
  border-color: #C0C0C0;
  transform: translateY(-2px);
}

.style-card.active {
  border-color: #A58B72;
}

.style-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.style-card-label {
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.palette-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.color-swatch {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.color-swatch:hover {
  transform: scale(1.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.color-swatch.active {
  border-color: #A58B72;
}

.palette-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* Scrollbar styling */
.sidebar-content::-webkit-scrollbar {
  width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: #D0D0D0;
  border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: #B0B0B0;
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    max-height: 400px;
  }

  .image-viewer {
    min-height: 300px;
  }
}

.venue_directory-section.all-venue.venueStyle.design-visually .button a {
  border: 1px solid #CCC2BB;
  padding: 10px 20px;
  font-family: var(--heading-font);
  color: var(--color-black);
}

.venue_directory-section.all-venue.venueStyle.design-visually .button {
  padding-bottom: 40px;
}

.venue_directory-section.all-venue.venueStyle.design-visually {
  background-image: url(../images/background-image-1.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.venue_directory-section.all-venue.venueStyle.design-visually .design-step-icon img {
  border-radius: 50%;
}

.venue_directory-section.works {
  background-image: url(../images/backgroung-image-2.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-color: transparent !important;
}

.venue_directory-section.works .heading-line h6 span {
  background-color: transparent;
}

.venue_directory-section.works .heading-line h6::before {
  background-color: transparent;
}

.venue_directory-section.all-venue.venueStyle.design-visually.build-team-behind .box-wrapper img {
  width: 100%;
}

.venue_directory-section.all-venue.venueStyle.design-visually.build-team-behind .box-wrapper h4 {
  font-size: 20px;
  color: #8D7A6C;
  display: inline-block;
  position: relative;
  padding: 20px 15px 5px 15px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.build-team-behind .box-wrapper h4::after {
  width: 100%;
  background-color: #8D7A6C;
  height: 1px;
  position: absolute;
  content: "";
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
}

.venue_directory-section.all-venue.venueStyle.design-visually.build-team-behind {
  background-image: url(../images/background-image-3.webp);
}

.venue_directory-section.all-venue.venueStyle.design-visually.build-team-behind .button a {
  padding: 10px 40px;
  color: #8D7A6C;
}

.venue_directory-section.all-venue.venueStyle.design-visually.build-team-behind .button {
  margin-top: 50px;
}

.editor {
  padding: 100px 0;
  background-image: url(../images/background-image-3.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.editor img {
  width: 100%;
}

.editor .box-wrapper {
  background-color: #F3EEEB;
  height: 100%;
}

.editor .box-wrapper p {
  font-size: 17px;
  font-weight: 500;
  line-height: 23px;
  color: #7D6B5D;
  padding: 10px 12px 10px 12px;
  font-family: "Inter", sans-serif;
  text-align: left;
}

.editor .text-wrapper h3 {
  font-size: 35px;
  font-family: "Playfair Display", serif;
  color: #766154;
}

.editor .text-wrapper h4 {
  font-size: 30px;
  font-family: "Playfair Display", serif;
  color: #766154;
  font-weight: 400;
  margin-bottom: 35px;
}

.editor .text-wrapper {
  margin-top: 80px;
  text-align: start;
}

.editor .text-wrapper span a {
  background-color: #F6EFEB;
  color: #91796C;
  border: 1px solid #91796C;
  padding: 10px 30px;
}

.editor .image.left img {
  height: 537px;
  object-fit: cover;
}

.editor.venue_directory-section.all-venue.venueStyle.design-visually {
  background-image: url(../images/background-image-3.webp);
  padding-bottom: 220px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .box-wrapper img {
  width: 100%;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .box-wrapper {
  height: 100%;
  background-color: #ebebeb;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .box-wrapper p {
  font-size: 20px;
  padding: 10px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .button-wrapper .red-btn a {
  background-color: #CE8E7A;
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  border: none;
  margin-right: 10px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .button-wrapper span a {
  background-color: transparent;
  color: #898481;
  border: 1px solid #898481;
  padding: 10px 30px;
  border-radius: 4px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .button-wrapper {
  margin-top: 50px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry {
  padding-top: 0px;
  background-image: none;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry.Beautifully {
  background-image: url(../images/backgroung-image-2.webp);
  padding-top: 70px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry.Beautifully .button-wrapper a {
  padding: 15px 20px;
  border: 2px solid #D5C8C1;
  border-radius: 0;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry.Beautifully .box-wrapper {
  box-shadow: 0px 4px 4px 0px #00000012;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry.Beautifully.honeymoons {
  padding-top: 0;
}

.editor.venue_directory-section.all-venue.venueStyle.design-visually {
  padding-top: 30px;
}

.editor.venue_directory-section.all-venue.venueStyle.design-visually .heading-line {
  margin-bottom: 40px;
}

.editor.venue_directory-section.all-venue.venueStyle.design-visually .box-wrapper img {
  height: 172px;
}

.heading-line h6 {
  padding-bottom: 7px;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .heading-line p {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry.Beautifully .heading-line p {
  max-width: 54%;
  width: 100%;
  margin: 0 auto;
}

.venue_directory-section.all-venue.venueStyle.design-visually.registry .box-wrapper img {
  height: 240px;
  object-fit: cover;
}

.cta-section-5 .text-wrapper {
  text-align: center;
}

.cta-section-5 {
  padding: 70px 0px 100px 0;
  background-image: url(../images/background-image-3.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat
}

.cta-section-5 .text-wrapper h3 {
  font-size: 40px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #7B6558;
  margin-bottom: 60px;
  position: relative;
}

.cta-section-5 .text-wrapper h3::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #EDE5E1;
  top: auto;
  left: 45%;
  right: 0;
  bottom: -17px !important;
  bottom: 0;
}

.cta-section-5 .text-wrapper a {
  background-color: #F8F2EE;
  color: #897A70;
  font-size: 16px;
  border: 1px solid #897A70;
  padding: 12px 25px;
}
.venue_directory-section.all-venue.venueStyle.design-visually.build-team-behind .box-wrapper img{
  height: 300px;
  object-fit: cover;
}
.venue_directory-section.all-venue.venueStyle.one{
  background-image: url(../images/bgimage-5.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.venue_directory-section.all-venue.venueStyle.one .heading-line h6 span {
    background: #f1e5dc;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}




.venue_directory-section.vendor.vendor-section-2.vendor-section-3{
    background-image: url(../images/bg-color.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 70px;
  padding-top: 40px;
}
.venue_directory-section.vendor.vendor-section-2.two{
  padding-bottom: 60px;
}
.venue_directory-section.vendor .con-tainer .heading h2 {
    background-color: #f6e7e3;
}
.vendor-directory-form-section {
    background-color: #f9eff1;
}
/* .venue_directory-section.vendor.vendor-section-2.vendor-section-4{
  background-color: #f6f1e ;
} */
 .venue_directory-section.vendor.vendor-section-2.two .con-tainer .heading h2 {
    background-color: #f9eff1;
}









/* ================================venu new====================== */
/* ================================================================================== */
/* ==================================================================================== */
/* ===================================================================================== */
/* ====================================================================================== */
/* ====================================================================================== */
/* =========================================================
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
========================================================================================
/////////////////////////////////////////////////////////////
================================================================================
////////////////////////////////////////////////////////////////////////////////////
=========================================================================================
/////////////////////////////////////////////////////////////////////////////////
=================================================================================
////////////////////////////////////////////////////////////////////////////
========================================================================
   Bohemian Bride — Venue + Vision Studio
   Stylesheet
   ========================================================= */

/* ----- CSS Variables ----- */
:root {
    --cream: #fbf7f1;
    --soft: #f6f0e8;
    --putty: #efe6dc;
    --ink: #1f1d1a;
    --muted: #6f6760;
    --line: #ded4c9;
    --accent: #9b745d;
    --gold: #d9b99b;
    --white: #fff;
}

/* ----- Base ----- */
* {
    box-sizing: border-box;
}
/* 
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
} */

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

.serif {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ----- Page system ----- */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ----- Header ----- */
.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 247, 241, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: 1240px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.date {
    width: 64px;
    height: 64px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.05;
}

.date b {
    display: block;
    font-size: 22px;
    font-weight: 400;
}

.brand {
   font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 4vw, 38px);
    letter-spacing: 0.18em;
    text-align: center;
}

.menu {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: white;
}

/* ----- Hero ----- */
.hero,
.page-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
    padding: 56px 22px 38px;
}

.page-hero {
    background: white;
    border-radius: 42px;
    overflow: hidden;
    margin-top: 48px;
    padding: 0;
}

.page-copy {
    padding: 44px;
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.hero h1 {
    font-size: clamp(58px, 9vw, 106px);
    line-height: 0.92;
    margin: 22px 0;
    
}

.lede {
    font-size: 21px;
    line-height: 1.55;
    color: #514a44;
    max-width: 720px;
    font-family: "Inter";
}

.copy {
  margin-top: 20px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 720px;
    font-family: "Inter";
}

/* ----- Buttons ----- */
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 15px 22px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 850;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.dark-btn {
    background: var(--ink);
    color: white;
    box-shadow: 0 14px 30px rgba(31, 29, 26, 0.18);
}

.light-btn {
    background: white;
    border: 1px solid var(--line);
    color: var(--ink);
}

.white-btn {
    background: white;
    color: var(--ink);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* ----- Photo placeholders ----- */
.photo {
    position: relative;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent 35%),
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.92), transparent 28%),
        radial-gradient(circle at 72% 76%, rgba(133, 94, 65, 0.28), transparent 35%),
        linear-gradient(45deg, rgba(95, 119, 92, 0.16), rgba(212, 177, 143, 0.28)),
        linear-gradient(135deg, #eee7dc, #f7f1ea 45%, #d9cfc2);
}

.photo.tall {
    min-height: 520px;
}

.photo-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
    color: #756b62;
}

.photo-label {
   font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    color: #3f3833;
}

 .p1 {
   font-family: "Inter";
   font-size: 20px;
}

.photo-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    font-weight: 800;
    color: #675e57;
}

.photo-credit {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(31, 29, 26, 0.72);
    color: white;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

/* ----- Summary cards ----- */
.summary {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 14px;
    margin-bottom: 38px;
}

.summary-card,
.card {
    background: var(--soft);
    border-radius: 24px;
    padding: 22px;
}

.label,
.eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 850;
}

.value {
   font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1.2;
    margin-top: 10px;
}

/* ----- Sections ----- */
.section {
    padding: 62px 0;
}

.section-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 32px;
}

.section-title {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.02;
    margin: 0;
}

.small {
    line-height: 1.75;
    color: var(--muted);
    font-size: 15px;
    max-width: 620px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 18px;
    margin-bottom: 30px;
}

.card h3,
.hotel h3,
.style-card h3 {
   font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.08;
    margin: 0 0 10px;
}

.card p,
.hotel p,
.style-card p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
    margin: 0;
    font-family: "Inter";
}

/* ----- Gallery ----- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery .feature {
    grid-column: span 2;
    grid-row: span 2;
}

/* ----- White section + About ----- */
.white-section {
    background: white;
}

.about {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 40px;
}

.love {
    border-radius: 32px;
    background: var(--putty);
    padding: 34px;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.tag {
    border: 1px solid var(--line);
    background: var(--cream);
    border-radius: 999px;
    padding: 12px 15px;
    color: #5d554e;
    font-size: 13px;
}

/* ----- Highlights ----- */
.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.check {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    color: #5c534c;
    font-size: 14px;
}

.dot {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--gold);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

/* ----- Dark section + Vision Studio ----- */
.dark-section {
    background: var(--ink);
    color: white;
    padding: 70px 0;
}

.vision {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
}

.dark-section .eyebrow {
    color: var(--gold);
}

.dark-section p {
    color: #c9c0b7;
     font-family: "Inter";
   
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.stat {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 24px;
    padding: 18px;
}

.stat b {
   font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 400;
    display: block;
    color: white;
}

.stat span {
    font-size: 11px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #bcb2a8;
    font-weight: 800;
}

.selected {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 28px;
    padding: 24px;
    margin-top: 28px;
}

/* ----- Palettes ----- */
.palette-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.palette {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 28px;
    padding: 12px;
    text-align: left;
    color: white;
}

.palette.active,
.palette:hover {
    border-color: var(--gold);
    background: rgba(217, 185, 155, 0.15);
    transform: translateY(-3px);
}

.palette-art {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.82), transparent 24%),
        radial-gradient(circle at 74% 75%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #f1d8cf, #b78976 52%, #3a3532);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.film,
.hover {
    position: absolute;
    top: 14px;
    z-index: 2;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 850;
}

.film {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: #514a44;
}

.hover {
    right: 14px;
    background: rgba(31, 29, 26, 0.78);
    color: white;
}

.palette-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
}

.palette-label h3 {
    margin: 0 0 7px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.05;
}

.palette-label p {
    margin: 0;
    color: #5a514a;
    font-size: 12px;
    line-height: 1.45;
     font-family: "Inter";
}

.vibe {
    padding: 12px 6px 4px;
    margin: 0;
    color: #c9c0b7;
    line-height: 1.55;
    font-size: 13px;
}

/* ----- Hotels ----- */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.hotel {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: white;
    text-align: left;
}

.hotel .photo {
    border-radius: 0;
    border: 0;
}

.hotel-content {
    padding: 22px;
}

.hotel-meta {
    margin-top: 14px;
    color: var(--accent);
    font-weight: 850;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ----- Final CTA ----- */
.final {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    overflow: hidden;
    border-radius: 40px;
    background: var(--putty);
    margin: 70px 0;
}

.final-copy {
    padding: 42px;
}

.final-dark {
    min-height: 420px;
    background: var(--ink);
    color: white;
    padding: 24px;
}

.inner {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ----- Inner pages ----- */
.inner-page {
    padding: 50px 0 80px;
}

/* ----- Vision flow ----- */
.flow {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 28px;
}

.flow-nav,
.flow-card,
.form-card {
    border-radius: 32px;
    background: white;
    padding: 26px;
}

.flow-step {
    display: flex;
    gap: 14px;
    width: 100%;
    border-radius: 22px;
    background: var(--cream);
    padding: 15px;
    margin-bottom: 12px;
    text-align: left;
}

.flow-step.active {
    background: var(--putty);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

/* ----- Choices + Pricing ----- */
.choice-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.choice {
    border: 1px solid var(--line);
    background: var(--cream);
    border-radius: 24px;
    padding: 24px;
    text-align: left;
}

.choice.active {
    border-color: var(--ink);
    background: var(--putty);
}

.all-palettes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 22px;
    max-height: 720px;
    overflow: auto;
    padding-right: 6px;
}

.all-palettes .palette {
    background: var(--cream);
    color: var(--ink);
    border: 0;
}

.all-palettes .vibe {
    color: var(--muted);
}

.pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 24px;
    padding: 20px;
}

/* ----- Forms ----- */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}

label span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: #766c64;
    font-weight: 850;
    margin-bottom: 8px;
}

input,
textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 15px 16px;
    outline: 0;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* ----- Styles grid ----- */
.style-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.style-card {
    border-radius: 30px;
    border: 1px solid var(--line);
    background: white;
    padding: 16px;
    text-align: left;
    overflow: hidden;
}

.style-card:hover,
.hotel:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(31, 29, 26, 0.1);
}

.style-card h3 {
    margin-top: 18px;
}

.style-image {
    position: relative;
    min-height: 210px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 38%),
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.78), transparent 28%),
        radial-gradient(circle at 78% 76%, rgba(155, 116, 93, 0.26), transparent 34%),
        linear-gradient(135deg, #e9dfd3, #cdbda8 48%, #8f8f77);
}

.style-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 29, 26, 0.48), transparent 55%);
}

.style-image-label {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.05;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.style-chip {
    display: inline-flex;
    margin-top: 16px;
    border-radius: 999px;
    background: var(--soft);
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 850;
    color: var(--accent);
}

/* ----- Locked / results cards ----- */
.result-locks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.locked {
    position: relative;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--line);
    padding: 18px;
    min-height: 150px;
    overflow: hidden;
}

.locked::before {
    content: "LOCKED";
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-weight: 900;
}

.locked h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
    margin: 32px 0 8px;
}

.locked p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* ----- Utilities ----- */
.feature-row {
    margin-top: 30px;
}

.intro-block {
    max-width: 880px;
    margin: 36px 0;
}

.pricing-card .label {
    color: var(--gold);
}

.pricing-card .price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    color: white;
    margin: 8px 0;
}

.checkbox-row {
    display: block;
    margin-top: 14px;
}

.checkbox-row input {
    width: auto;
    margin-right: 8px;
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
    .hero,
    .about,
    .vision,
    .final,
    .page-hero,
    .flow {
        grid-template-columns: 1fr;
    }

    .summary,
    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery,
    .style-grid,
    .result-locks {
        grid-template-columns: repeat(2, 1fr);
    }

    .palette-grid,
    .check-grid,
    .info-grid,
    .all-palettes,
    .pricing-grid,
    .choice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery .feature {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .brand {
        font-size: 21px;
        letter-spacing: 0.12em;
    }

    .date {
        width: 52px;
        height: 52px;
    }

    .btn,
    .btn-row {
        width: 100%;
    }

    .summary,
    .hotel-grid,
    .gallery,
    .style-grid,
    .palette-grid,
    .check-grid,
    .info-grid,
    .all-palettes,
    .pricing-grid,
    .choice-grid,
    .form-grid,
    .result-locks {
        grid-template-columns: 1fr;
    }

    .photo.tall {
        min-height: 360px;
    }
}
.venue-new-page{
  padding-top: 100px;
}
.container.section .check span:nth-child(2){
  display: block;
  padding-left: 44px;
}
.container.section .hotel.nav{
  height: auto;
  padding: 0px 5px;
}
.container.section .hotel.nav .photo{
  overflow: visible;
  width: 100%;
}
.container.section .hotel.nav .hotel-content .hotel-meta{
  margin-top: 5px;
  margin-bottom: 10px;
}
.container.section .section-row .small{
  margin-bottom: 15px;
  font-family: "Inter";
}
.editor.venue_directory-section.all-venue.venueStyle.design-visually{
  padding: 0px 0 100px 0;
}
.container.section .gallery{
  background-color: transparent;
}
html{
  overflow-x: hidden;
}
.venue-new-page .page.active{
  background-color: #fbf7f1;
}
.venue-new-page h2{
  color: #1f1d1a;
}
.dark-section h2{
  color: #fff;
  padding: 10px 0;
}
.editor.venue_directory-section.all-venue.venueStyle.design-visually .heading-line {
   margin-top: 0;
}