/* Theme Name: Barebones */
/* === Global === */
@font-face {
	font-family: CitadelScriptPro;
	/* set name */
	src: url("assets/fonts/CitadelScriptPro.otf") format("opentype");
	/* url of the font */
}
h1,
h2,
h3,
h4,
h5 {
	font-family: "Playfair Display", sans-serif;
}
h2 {
	font-size: 48px;
}
.main-line-heading {
	position: relative;
	text-align: center;
	margin: 0 0 80px 0;
}
.main-line-heading h2 {
	display: inline-block;
	background: #fff;
	padding: 0 20px;
	position: relative;
	z-index: 1;
	margin: 0;
	font-weight: 300;
}
.main-line-heading::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	height: 0.01rem;
	background: #000;
}
/* === Header/Nav === */
.primary-header {
	padding: 30px 0;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 11;
	transition: all ease 0.3s;
}
.home .primary-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 250px;
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	background: -o-linear-gradient(top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
	pointer-events: none;
	z-index: -1;
	transition: all ease 0.3s;
}
.primary-header .header-row {
	align-items: center;
	column-gap: 40px;
}
.primary-header .header-row .logo-col img {
	width: 300px;
	transition: all ease 0.3s;
}
.primary-header .main-nav .menu {
	justify-content: space-evenly;
}
.primary-header .main-nav .menu li a {
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.45px;
	text-transform: uppercase;
}
.main-nav .current_page_item>a,
.main-nav a:hover,
.main-nav a:focus {
	color: var(--color-6);
}
body.scrolled .primary-header .header-row .logo-col img {
	max-width: 200px;
}
body.scrolled .primary-header {
	padding: 10px 0;
}
body.scrolled .primary-header::before {
	height: 150px;
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
/* === Footer === */
.primary-footer {
	padding: 60px 0 0 0;
	background-color: var(--color-3);
}
.primary-footer .footer-row {
	gap: 100px;
	padding: 20px 0 40px 0;
}
.primary-footer .footer-row .logos-col {
	flex: 1 1 calc(33.33% - 10px);
}
.primary-footer .footer-row .menus-col {
	flex: 1 1 calc(77.77% - 10px);
}
.primary-footer .footer-row .logos-col {
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.primary-footer .footer-row .logos-col .footer-image {
	max-width: 75%;
}
.primary-footer .footer-row .logos-col .footer-cta .btn {
	padding: 12px 20px;
}
.primary-footer .footer-row .logos-col .footer-cta .btn:hover,
.primary-footer .footer-row .logos-col .footer-cta .btn:focus {
	color: var(--color-3);
}
.primary-footer .footer-row .menus-col {
	display: grid;
	align-content: start;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, auto);
	column-gap: 46px;
	row-gap: 60px;
}
.primary-footer .footer-row .menus-col .heading {
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-family: var(--font_body);
	color: var(--color-10);
}
.primary-footer .footer-row .menus-col .menu {
	list-style-type: none;
	padding: 0;
}
.primary-footer .footer-row .menus-col .menu li {
	text-transform: uppercase;
	padding-bottom: 20px;
}
.primary-footer .footer-row .menus-col .menu li a {
	font-weight: 600;
}
.primary-footer .footer-row .social-col .links {
	font-size: 25px;
	gap: 6px;
}
.primary-footer .footer-row .email-col .email-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 1px var(--color-1);
	padding-bottom: 10px;
	transition: all ease 0.3s;
	font-weight: 600;
}
.primary-footer .footer-row .email-col .email-inner:hover {
	border-bottom: solid 1px var(--color-2);
}
.primary-footer .footer-row .footer-links .link {
	padding: 0 0 14px 0;
	font-style: italic;
}
.primary-footer .footer-row .footer-links .link a {
	font-weight: 600;
}
.primary-footer .copyright {
	padding: 10px 0;
	background-color: var(--color-1);
}
.primary-footer .copyright a {
	color: var(--color-3);
	font-style: italic;
	font-weight: 400;
}
.primary-footer .copyright a:hover {
	color: var(--color-2);
}
.primary-footer a:hover,
.primary-footer a:focus {
	color: var(--color-10);
}
/* === Home Page === */
.banner-section {
	position: relative;
	min-height: 80vh;
	margin-top: -150px;
}
.banner-section .image img {
	min-height: 80vh;
	object-fit: cover;
}
/* === Marquee === */
@keyframes marquee-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-1 * var(--marquee-item-width, 100%)));
	}
}
.marquee {
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	z-index: 1;
	color: var(--color-1);
}
.marquee__track {
	display: flex;
	width: max-content;
	animation: marquee-scroll var(--marquee-duration, 20s) linear infinite;
}
.marquee__track:hover {
	animation-play-state: paused;
}
.marquee__content {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	white-space: nowrap;
}
.marquee__content>* {
	margin: 0;
}
.marquee__content::after {
	content: "•";
	padding: 0 0.75em;
}
/* === Services Section === */
.services-section {
	padding: 0px 0 60px 0;
}
.services-section .services-section-inner {
	position: relative;
}
.services-section .logo-wrap {
	z-index: 11;
	border-radius: 100px;
	position: relative;
	transform: translateY(25%);
}
.services-section .floating-logo {
	background-color: #fff;
	border-radius: 50%;
	width: 150px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.services-section .floating-logo img {
	border-radius: 50%;
	margin: 0 auto;
	background-color: #fff;
}
.services-section .services {
	gap: 20px;
	flex-wrap: wrap;
}
.services-section .services .service {
	flex: 1 1 calc(33.33% - 14px);
	position: relative;
}
.services-section .services .service .heading {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translate(-50%);
	z-index: 2;
}
.services-section .services .service .heading h2 {
	margin-bottom: 0;
	color: #fff;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	text-align: center;
}
.services-section .services .service .image {
	position: relative;
	z-index: 1;
}
.services-section .services .service .image::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
	opacity: 1;
	z-index: 0;
	transition: all ease 0.3s;
	background-color: var(--color-3);
	opacity: 0.7;
}
.services-section .services .service:hover .image::after {
	background-color: #00000000;
	opacity: 1;
}
.background-section {
	padding: 30px 0;
	background-color: var(--color-1);
	color: #fff;
}
.background-section .background-section-inner .main-content {
	align-items: center;
	justify-content: space-around;
}
.background-section .background-section-inner .main-content .logo-col img {
	max-width: 250px;
}
.background-section .background-section-inner .main-content .content-col {
	font-family: "Playfair Display", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.background-section .background-section-inner .main-content .content-col p {
	margin: 0;
	text-align: center;
}
.background-section .background-section-inner .main-content .button-col {
	min-width: 250px;
}
.background-section .background-section-inner .main-content .button-col .btn {
	padding: 14px 50px;
	color: var(--color-1);
	font-weight: 600;
	background-color: #fff;
}
.background-section .background-section-inner .main-content .button-col .btn:hover,
.background-section .background-section-inner .main-content .button-col .btn:focus {
	background-color: var(--color-3);
}
.featured-weddings-section {
	padding: 80px 0;
}
.featured-weddings-section .featured-weddings {
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}
.featured-weddings-section .featured-weddings .featured-wedding {
	flex: 0 1 calc(25% - 8px);
}
.featured-weddings-section .featured-weddings .featured-wedding .image {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	overflow: hidden;
	border-radius: 400px;
	z-index: 1;
}
.featured-weddings-section .featured-weddings .featured-wedding .image::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	transition: all ease 0.3s;
}
.featured-weddings-section .featured-weddings .featured-wedding:hover .image::after {
	background-color: var(--color-1);
	opacity: 0.5;
}
.featured-weddings-section .featured-weddings .featured-wedding .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 400px;
}
.featured-weddings-section .featured-weddings .featured-wedding .heading {
	font-size: 20px;
	color: #000;
	text-align: center;
	margin: 20px 0 8px 0;
	transition: all ease 0.3s;
}
.featured-weddings-section .featured-weddings .featured-wedding:hover .heading {
	color: var(--color-1);
}
.featured-weddings-section .featured-weddings .featured-wedding .read-more {
	display: flex;
	justify-content: center;
	font-family: "Open Sans", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	transition: all ease 0.3s;
}
.featured-weddings-section .owl-carousel .owl-nav button.owl-prev,
.featured-weddings-section .owl-carousel .owl-nav button.owl-next {
	font-size: 32px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
}
.featured-weddings-section .owl-carousel .owl-nav button.owl-next {
	right: 15px;
}
.featured-weddings-section .owl-carousel .owl-nav button.owl-prev {
	left: 15px;
}
.featured-blogs-section {
	padding: 80px 0;
}
.featured-blogs-section .featured-blogs {
	gap: 10px;
	justify-content: center;
}
.featured-blogs-section .featured-blogs .featured-blog {
	flex: 0 1 calc(25% - 8px);
}
.featured-blogs-section .featured-blogs .featured-blog .image {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	overflow: hidden;
	border-radius: 400px;
	z-index: 1;
}
.featured-blogs-section .featured-blogs .featured-blog .image::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	transition: all ease 0.3s;
}
.featured-blogs-section .featured-blogs .featured-blog:hover .image::after {
	background-color: var(--color-1);
	opacity: 0.5;
}
.featured-blogs-section .featured-blogs .featured-blog .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 400px;
}
.featured-blogs-section .featured-blogs .featured-blog .heading {
	font-size: 20px;
	color: #000;
	text-align: center;
	margin: 20px 0 8px 0;
	transition: all ease 0.3s;
}
.featured-blogs-section .featured-blogs .featured-blog:hover .heading {
	color: var(--color-1);
}
.featured-blogs-section .featured-blogs .featured-blog .read-more {
	display: flex;
	justify-content: center;
	font-family: "Open Sans", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	transition: all ease 0.3s;
}
/* === Interior Pages === */
.ip .primary-header {
	padding: 15px 0;
	background-color: #fff;
	z-index: 22;
}
.vendor-categories-section .content-banner {
	background-color: var(--color-8);
	padding: 20px 0 70px 0;
	color: #fff;
	position: relative;
	margin-bottom: 100px;
}
.vendor-categories-section .content-banner h1 {
	font-size: 60px;
}
.vendor-categories-section .content-banner h1 strong {
	font-size: 90px;
	font-weight: 400;
}
.vendor-categories-section .content-banner h2 {
	font-size: 30px;
	font-weight: 100;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}
.vendor-categories-section .content-banner .floating-logo {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	z-index: 11;
	border-radius: 100px;
}
.vendor-categories-section .content-banner .floating-logo img {
	border-radius: 100px;
}
.vendor-categories-section .vendor-categories-section-inner {
	margin-top: 100px;
	margin-bottom: 80px;
}
.vendor-categories-section .vendor-categories-section-inner .categories {
	flex-wrap: wrap;
	gap: 20px;
}
.vendor-categories-section .vendor-categories-section-inner .categories .category {
	flex: 0 1 calc(33.33% - 13.33px);
	position: relative;
}
.vendor-categories-section .vendor-categories-section-inner .categories .category .heading {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 2;
	width: 100%;
}
.vendor-categories-section .vendor-categories-section-inner .categories .category .heading h2 {
	color: #fff;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
}
.vendor-categories-section .vendor-categories-section-inner .categories .category .image {
	position: relative;
	z-index: 1;
}
.vendor-categories-section .vendor-categories-section-inner .categories .category .image::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
	opacity: 1;
	z-index: 0;
	transition: all ease 0.3s;
}
.vendor-categories-section .vendor-categories-section-inner .categories .category:hover .image::after {
	background-color: var(--color-1);
	opacity: 0.7;
}
.vendor-posts-section .content-banner {
	background-color: var(--color-1);
	padding: 40px 0 100px 0;
	color: #fff;
	position: relative;
}
.vendor-posts-section .content-banner h1 {
	font-size: 72px;
	margin-top: 40px;
	text-align: center;
	font-weight: 300;
}
.vendor-posts-section .content-banner .floating-logo {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	z-index: 11;
	border-radius: 100px;
}
.vendor-posts-section .content-banner .floating-logo img {
	border-radius: 100px;
}
.vendor-posts-section .vendor-posts {
	gap: 20px;
	margin-top: 140px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}
.vendor-posts-section .vendor-posts .vendor-post {
	flex: 1 1 calc(33.33% - 14px);
	max-width: calc(33.33% - 14px);
}
.vendor-posts-section .owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #d9978f7d;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	border: 2px solid #d9978fd6;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vendor-posts-section .owl-carousel .owl-nav button.owl-prev {
	left: 5px;
}
.vendor-posts-section .owl-carousel .owl-nav button.owl-next {
	right: 5px;
}
.vendor-posts-section .vendor-posts .vendor-post .contact-content {
	background-color: #fbfcf9;
	margin: -20px 20px 0 20px;
	position: relative;
	z-index: 5;
	padding: 12px 12px 32px 12px;
}
.vendor-posts-section .vendor-posts .vendor-post .custom-content a:not(.btn) {
	font-family: "Playfair Display", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
}
.vendor-posts-section .vendor-posts .vendor-post .custom-content .content-inner.collapsed {
	max-height: 0;
	position: relative;
	overflow: hidden;
	transition: max-height 0.5s ease;
}
.vendor-posts-section .vendor-posts .vendor-post .custom-content .content-inner.collapsed::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
.vendor-posts-section .vendor-posts .vendor-post .custom-content .content-inner {
	max-height: 2000px;
	transition: max-height 0.5s ease;
}

.vendor-posts-section .vendor-posts .vendor-post .custom-content .content-inner[data-expanded="true"]::after {
	opacity: 0;
}
.vendor-posts-section .vendor-posts .vendor-post .custom-content .read-toggle-btn {
	display: block;
	margin: 10px auto;
	cursor: pointer;
	color: var(--color-6);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
}
.vendor-posts-section .vendor-posts .vendor-post .heading {
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-align: center;
}
.vendor-posts-section .vendor-posts .vendor-post .social .links {
	justify-content: center;
	gap: 12px;
	font-size: 28px;
}
.vendor-posts-section .vendor-posts .vendor-post .custom-content .content-inner * {
	text-align: left !important;
}
.vendor-posts-section .vendor-posts .vendor-post p {
	margin: 10px 0;
}
.vendor-posts-section .vendor-posts .vendor-post .phone {
	margin: 10px 0;
}
/* Shop Page(s) */
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-breadcrumb {
	display: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
	background-color: var(--color_1);
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
	color: var(--color_1);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
	background-color: var(--color_2);
}

.featured-weddings-section h2,
.featured-blogs-section h2 {
	color: var(--color-1);
}
.wc-banner h1 {
	text-align: center;
}
.woocommerce-checkout .main-section h1,
.woocommerce-cart .main-section h1,
.woocommerce-shop .woocommerce-products-header__title {
	display: none;
}
.woocommerce-checkout .vendor-categories-section .content-banner,
.woocommerce-cart .vendor-categories-section .content-banner,
.woocommerce-shop .vendor-categories-section .content-banner {
	background-color: var(--color-6);
}
.primary-footer .email-col {
	grid-column: span 2;
}
.primary-footer .footer-row .menus-col .email-col .heading {
	font-family: CitadelScriptPro, serif;
	text-transform: none;
	font-size: 48px;
	text-align: center;
	margin-bottom: 12px;
}
.ctct-form-header {
	display: none;
}
.ctct-form-embed.form_14 .ctct-form-defaults {
	background-color: var(--color-3) !important;
	padding: 0 !important;
}
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field,
.ctct-gdpr-text {
	margin: 0 0 12px 0 !important;
}
.ctct-form-embed.form_14 .ctct-form-custom .ctct-form-button {
	background-color: var(--color-1) !important;
	font-size: 15px !important;
	padding: 12px 20px !important;
	border-radius: 0px !important;
}
.ctct-form-embed.form_14 .ctct-form-custom .ctct-form-button:hover,
.ctct-form-embed.form_14 .ctct-form-custom .ctct-form-button:focus {
	background-color: var(--color-2) !important;
}
.main-nav .current_page_item>a,
.main-nav a:hover,
.main-nav a:focus {
	color: var(--color-6);
}
.primary-header .main-nav .menu {
	white-space: nowrap;
}
.primary-header .logo-col {
	flex: 1 1 300px;
}
.blog-section .blogs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.blog-section .blog {
	position: relative;
	margin-bottom: 0;
}
.blog-section .blog .image {
	position: relative;
	z-index: 1;
}
.blog-section .blog .image::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
	opacity: 1;
	z-index: 0;
	transition: all ease 0.3s;
}
.blog-section .blog:hover .image::after {
	background-color: var(--color-1);
	opacity: 0.7;
}
.blog-section .blog .image img {
	aspect-ratio: 1/1;
	object-fit: cover;
}
.blog-section .blog .heading {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 2;
	width: 100%;
	color: #fff;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
}
.popup-section {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all ease .9s;
	z-index: 9999;
	display: flex;
	justify-content: center;
	width: 50%;
	opacity: 0;
	visibility: hidden;
	max-height: 90vh;
	pointer-events: none;
	background-color: var(--color-3);
	padding: 20px 0;
	color: var(--color-1);
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.popup-section .close-popup {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 24px;
	color: var(--color-1);
	cursor: pointer;
	z-index: 10;
	transition: transform 0.3s ease;
}
.popup-section .close-popup:hover {
	transform: scale(1.2);
	color: var(--color-2);
}
.popup-section.is-active {
	left: 50%;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	margin: 0;
}
.popup-section .gform_button {
	background-color: var(--color-1);
	color: var(--color-3);
	padding: 12px 20px;
	border: none;
	cursor: pointer;
	transition: all ease 0.3s;
}
.popup-section .gform_button:hover,
.popup-section .gform_button:focus {
	background-color: var(--color-2);
	color: var(--color-3);
}
.content-section {
	padding: 80px 0;
}
.content-section.img-left .content-row {
	flex-direction: row-reverse;
}
.content-section .content-row {
	flex-wrap: wrap;
	align-items: center;
}
.content-section .content-row>.col {
	flex: 1 1 50%;
}
.content-section .content-col {
	padding: 35px;
}
.content-section .image-col {
	position: relative;
}
.content-section .image-col .image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.content-section .image-col .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wedding-section .weddings {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.wedding-section .weddings .wedding:nth-child(3n + 2) {
	margin-top: 30px;
}
.wedding-section .weddings .wedding .image img {
	min-width: 100%;
	height: 400px;
	object-fit: cover;
}
.wedding-section .weddings .wedding .text-content {
	background-color: #fbfcf9;
	margin: -20px 20px 0 20px;
	position: relative;
	z-index: 5;
	padding: 12px 12px 32px 12px;
	text-align: center;
}
.wedding-section .weddings .wedding .text-content .date,
.wedding-section .weddings .wedding .text-content .categories {
	margin-bottom: 20px;
}
.wedding-section .weddings .wedding .text-content .btn {
	background-color: var(--color-3);
	color: var(--color-2);
	padding: 12px 50px;
	font-weight: 600;
	transition: all ease 0.3s;
}
.wedding-section .weddings .wedding .text-content .btn:hover,
.wedding-section .weddings .wedding .text-content .btn:focus {
	background-color: var(--color-1);
	color: var(--color-3);
}
.wedding-section .weddings .wedding .heading {
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-align: center;
}
.wedding-section .filter-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 40px;
	gap: 20px;
}
.wedding-section .wedding-search-box input {
	border: 1px solid #ccc;
	padding: 5px 15px;
	width: 250px;
	text-transform: uppercase;
	font-size: 14px;
	color: #999;
	outline: none;
}
.wedding-section .wedding-filter-controls {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}
.wedding-section .wedding-search-container input {
	border: 1px solid #e0e0e0;
	padding: 12px 15px;
	width: 280px;
	font-size: 13px;
	letter-spacing: 1px;
	color: #999;
	outline: none;
	text-transform: uppercase;
}
.wedding-section .select-wrapper {
	position: relative;
	width: 200px;
}
.wedding-section .dropdown-container {
	position: relative;
	width: 200px;
	cursor: pointer;
}
.wedding-section .dropdown-header {
	background-color: var(--color-1);
	color: white;
	padding: 7px 10px;
	text-align: center;
	font-size: 14px;
	letter-spacing: 1px;
}
.wedding-section .dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff8f6;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid #eee;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 10;
}
.wedding-section .dropdown-list li {
	padding: 10px;
	text-align: center;
	font-size: 12px;
	color: #333;
	border-bottom: 1px solid #f0e6e4;
	text-transform: uppercase;
	transition: background 0.2s;
}
.wedding-section .dropdown-list li:hover {
	background-color: #f0e6e4;
}
.wedding-section .dropdown-container:hover .dropdown-list {
	display: block;
}
.wedding-section .pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
}

.blog-section .new-blogs {
	flex-direction: column;
}
.blog-section .new-blogs .featured-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}
.blog-section .new-blogs .featured-group .new-blog:nth-child(1) {
	grid-row: 1 / span 2;
	display: flex;
	flex-direction: column;
}
.blog-section .new-blogs .featured-group .new-blog .image img {
	height: unset;
}
.blog-section .new-blogs .featured-group .new-blog:nth-child(2),
.blog-section .new-blogs .featured-group .new-blog:nth-child(3) {
	display: grid;
	grid-template-columns: 50% 1fr;
	gap: 15px;
	align-items: center;
}
.blog-section .new-blogs .featured-group .new-blog:nth-child(1) img {
	height: 400px;
}
.blog-section .new-blogs .featured-group .new-blog:nth-child(2) img,
.blog-section .new-blogs .featured-group .new-blog:nth-child(3) img {
	height: 275px;
}
.blog-section .new-blogs .featured-group .new-blog:nth-child(3n + 2) {
	margin-top: 0px;
}
.blog-section .new-blogs .not-featured {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.blog-section .new-blogs .new-blog:nth-child(3n + 2) {
	margin-top: 30px;
}
.blog-section .new-blogs .new-blog .image img {
	min-width: 100%;
	height: 400px;
	object-fit: cover;
}
.blog-section .new-blogs .new-blog .text-content {
	background-color: #fbfcf9;
	margin: -20px 20px 0 20px;
	position: relative;
	z-index: 5;
	padding: 12px 12px 32px 12px;
	text-align: center;
}
.blog-section .new-blogs .new-blog .text-content .date,
.blog-section .new-blogs .new-blog .text-content .categories {
	margin-bottom: 20px;
}
.blog-section .new-blogs .new-blog .text-content .btn {
	background-color: var(--color-3);
	color: var(--color-2);
	padding: 12px 50px;
	font-weight: 600;
	transition: all ease 0.3s;
}
.blog-section .new-blogs .new-blog .text-content .btn:hover,
.blog-section .new-blogs .new-blog .text-content .btn:focus {
	background-color: var(--color-1);
	color: var(--color-3);
}
.blog-section .new-blogs .new-blog .heading {
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-align: center;
}
.search .new-blogs,
.archive .new-blogs {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.search .new-blogs .new-blog:nth-child(3n + 2),
.archive .new-blogs .new-blog:nth-child(3n + 2) {
	margin-top: 0px;
}
.search .blog-inner,
.archive .blog-inner {
	gap: 20px;
}
.search .blog-inner .image-col,
.archive .blog-inner .image-col {
	flex: 1 1 50%;
}
.search .blog-inner .content-col,
.archive .blog-inner .content-col {
	flex: 1 1 50%;
}
.search .blog-section .blogs-row,
.archive .blog-section .blogs-row {
	justify-content: flex-start;
}
.gallery-section {
	background-color: var(--color-3);
}
.gallery-section .gallery-mobile {
	display: none;
}
.gallery-section .gallery {
	padding: 20px;
	column-gap: 20px;
	row-gap: 20px;
	flex-wrap: wrap;
}
.main-section.single ul {
	display: flow-root;
}
.gallery-section .gallery .image-col {
	display: flex;
	flex-direction: column;
	flex: 1 1 calc(33.33% - 23.33px);
	min-width: 150px;
}
.gallery-section .gallery.column-4 .image-col {
	flex: 1 1 calc(25% - 15px);
}
.gallery-section .gallery .image-col .image:last-child {
	flex: 1 0 auto;
}
.gallery-section .gallery .image-col .image:last-child .media {
	height: 100%;
}
.gallery-section .gallery .image-col .image:last-child img {
	height: 100%;
	object-fit: cover;
}
.gallery-section .gallery .image {
	margin-bottom: 20px;
}
.gallery-section .gallery .image:last-child {
	margin-bottom: 0;
}
.paged:has(.blog-section) .wedding-section {
	display: none;
}
.wedding-gallery {
	flex-wrap: wrap;
	--gap: 15px;
	gap: var(--gap);
	margin-top: 5px;
}
.wedding-gallery .image-col {
	flex: 1 1 calc(33.33% - 10px);
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.wedding-gallery .image-col .image:last-child {
	flex: 1 1 auto;
}
.wedding-gallery .image-col .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
body .gform_wrapper.gravity-theme .button {
	display: inline-block;
	margin-bottom: 0;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #fff;
	border-radius: 0px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all ease .3s;
	padding: .4em 1.3em;
	background-color: var(--color-1);
	width: 100%;
}
body .gform_wrapper.gravity-theme .button:hover,
body .gform_wrapper.gravity-theme .button:focus {
	background-color: var(--color-2);
}
.vendor-categories-section .category.no-img .category-inner,
.vendor-categories-section .category.no-img a {
	height: 100%;
	display: block;
}
.vendor-categories-section .vendor-categories-section-inner .categories .category.no-img .heading h2 {
	color: var(--color-text);
}
.vendor-categories-section .vendor-categories-section-inner .categories .category.no-img {
	background-color: var(--color-3);
}
/* === Media Queries === */
@media (min-width: 1300px) {
	.flex-container {
		width: 1270px;
	}
}
@media (min-width: 1400px) {
	.flex-container {
		width: 1370px;
	}
}
@media (min-width: 1500px) {
	.flex-container {
		width: 1470px;
	}
}
@media (min-width: 1600px) {
	.flex-container {
		width: 1570px;
	}
}
@media (min-width: 1700px) {
	.flex-container {
		width: 1670px;
	}
}
@media (min-width: 1800px) {
	.flex-container {
		width: 1770px;
	}
}
@media screen and (max-width: 1200px) {
	.services-section .services .service .heading h2 {
		font-size: 32px;
	}
	.gallery-section .gallery {
		column-gap: 20px;
		row-gap: 20px;
	}
	.gallery-section .gallery .image {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 991px) {
	.vendor-categories-section .vendor-categories-section-inner .categories {
		flex-direction: column;
	}
	.blog-section .blogs {
		grid-template-columns: repeat(2, 1fr);
	}
	.primary-footer .footer-row {
		flex-wrap: wrap;
	}
	.background-section .background-section-inner .main-content .button-col .btn {
		padding: 14px 30px;
	}
	.wedding-section .weddings,
	.blog-section .new-blogs .featured-group,
	.blog-section .new-blogs .not-featured,
	.blog-section .new-blogs .featured-group .new-blog:nth-child(2),
	.blog-section .new-blogs .featured-group .new-blog:nth-child(3) {
		grid-template-columns: 1fr;
	}
	.wedding-section .filter-wrapper {
		flex-direction: column;
	}
	.wedding-section .filter-wrapper .wedding-search-box button {
		margin-top: 6px;
	}
	.banner-section {
		margin-top: 100px;
		min-height: unset;
	}
	.gallery-section .gallery {
		column-gap: 10px;
		row-gap: 10px;
	}
	.gallery-section .gallery .image {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px) {
	.services-section .services {
		flex-direction: column;
	}
	.background-section .background-section-inner .main-content .button-col {
		min-width: auto;
	}
	.background-section .background-section-inner .main-content {
		flex-direction: column;
		gap: 40px;
	}
	.primary-footer .footer-row {
		flex-direction: column;
	}
	.featured-weddings-section .flex-row.featured-weddings,
	.featured-blogs-section .flex-row.featured-blogs {
		flex-direction: column;
	}
	.featured-weddings-section .featured-weddings .featured-wedding,
	.featured-blogs-section .featured-blogs .featured-blog {
		width: 100%;
		margin-bottom: 30px;
	}
	.featured-weddings-section .featured-weddings .featured-wedding .image,
	.featured-wedblogsings-section .featured-blogs .featured-blog .image {
		position: relative;
		width: 100%;
		padding-bottom: 100%;
		overflow: hidden;
	}
	.featured-weddings-section .featured-weddings .featured-wedding .image img,
	.featured-blogs-section .featured-blogs .featured-blog .image img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.vendor-posts-section .vendor-posts {
		flex-direction: column;
	}
	.vendor-posts-section .vendor-posts .vendor-post {
		max-width: 100%;
	}
	.blog-section .blogs {
		grid-template-columns: repeat(1, 1fr);
	}
	.primary-footer .footer-row .menus-col {
		display: flex;
		align-items: center;
		flex-direction: column;
		text-align: center;
	}
	.primary-footer .footer-row .menus-col .email-col .heading {
		font-size: 38px;
	}
	.gallery-section .gallery-desktop {
		display: none;
	}
	.gallery-section .gallery-mobile {
		display: flex;
	}
	.gallery-section .gallery-mobile .image-col {
		flex: 1 1 calc(50% - 5px);
	}
}
@media screen and (max-width: 550px) {
	.vendor-categories-section .vendor-categories-section-inner .categories .category .heading h2 {
		font-size: 26px;
	}
	.vendor-categories-section .content-banner h1 {
		font-size: 40px;
	}
	.vendor-categories-section .content-banner h1 strong {
		font-size: 60px;
	}
	.vendor-categories-section .content-banner h2 {
		font-size: 30px;
	}
	h2 {
		font-size: 38px;
	}
}