/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/

/* @font-face {
	font-family: 'Georgia Brush';
	src: url('./fonts/NocturaGeorgiaBrush/font.woff2') format('woff2'),
		url('./fonts/NocturaGeorgiaBrush/font.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
} */

/* Font Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
	/* --base-font: "Montserrat", sans-serif;
	--heading-font: "Montserrat", sans-serif;
	--alt-font: "Georgia Brush", sans-serif; */
	--dark-blue: #1B4056;
	--dark-red: #C53058;
	--white: #FFF;

	--light-blue: #1D4572;
	--molen-red-light: #F04F47;
	--light-peach: #FAECE4;
	--peach: #F3D5C7;
	--Body-copy-grey: #42464A;
	--Canales-cobalt: #327AB7;
	--Mint: #9FEED7;
	--Headings-Navy: #1D4572;
	--White: #FFF;
	--Canales-deep-gold: #EFAB1A;
	--Canales-yellow: #FFE394;
	--Pale-ocean: #F1FEFF;
	--Mid-ocean: #E2FCFF;
	--High-contast-teal: #3799AE;
	--Dark-mint: #7FDCC2;
	--Canales-light-gold: #ffe292;
	--Canales-dark-gold: #ffbe14;

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
	font-size: 16px;
}

body {
	font-size: 18px;
	/* currently ems cause chrome bug misinterpreting rems on body element */
	/* line-height: 1.6;
  font-weight: 400; */
	/* font-family: var(--base-font); */
	/* color: #222;  */
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0rem;
}


h1,
h2,
h3 {
	/* font-family: var(--heading-font); */
	font-weight: 500;
}

h4,
h5,
h6,
p,
li,
.btn {
	/* font-family: var(--base-font); */
}

.brush,
.brush * {
	/* font-family: var(--alt-font) !important; */
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
	/* padding: 12px 15px; */
	text-align: left;
	border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
	padding-left: 0;
}

th:last-child,
td:last-child {
	padding-right: 0;
}


.elementor-widget-text-editor p:first-of-type,
.blog-post-content p:first-of-type {
	margin-top: 0;
}

.elementor-widget-text-editor p:last-of-type,
.blog-post-content p:last-of-type {
	margin-bottom: 0;
}

.elementor-widget-text-editor ul,
.blog-post-content ul {
	margin-top: 0;
	margin-bottom: 0px;
	margin-left: -20px;
}

.elementor-widget-text-editor li,
.blog-post-content li {
	padding-left: 10px;
	margin-bottom: 20px;
}

.elementor-widget-text-editor li:last-of-type,
.blog-post-content li:last-of-type {
	margin-bottom: 0px;
}

/* .icon__box {
	height: 216px;
} */

.icon__box .elementor-icon-box-title a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.icon__box .elementor-icon-box-icon .elementor-icon,
.icon__box .elementor-icon-box-title {
	transition: transform 0.3s ease;
}


.icon__box:hover .elementor-icon-box-icon .elementor-icon {
	transform: scale(1.2);
}

.icon__box:hover .elementor-icon-box-title {
	transform: scale(1.1);
}


#wrapper {
	overflow: hidden;
}

.teal {
	color: var(--High-contast-teal) !important;
}

.blur-7 {
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
}

.blur-15 {
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.contact-link a {
	color: inherit;
	transition: ease-in-out all .3s;
}

.contact-link a:hover {
	color: var(--dark-red);
}

/******************************************************************/
/*                       Navigation                               */
/******************************************************************/

.site-header {
	background-color: transparent;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 100;
	transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
	padding: 30px 0px;
}

/* Header with background when scrolling up */
.site-header.header-visible {
	background-color: var(--dark-blue);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px 0px;
}

/* Hidden header styles */
.site-header.header-hidden {
	top: -215px;
}

.site-header .container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
}


.site-logo img {
	position: relative;
	z-index: 2;
	width: 274px;
	height: 38px;
}


.main-nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 50px;
}

.main-nav .right-side-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.icon-burger {
	display: flex;
	flex-direction: column;
	gap: 7px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	align-items: flex-start;
	justify-content: center;
	padding-left: 12px;
	position: relative;
}

.icon-burger::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: var(--white);
	border-radius: 50%;
	z-index: -1;
}

.icon-burger div {
	background-color: var(--dark-blue);
	height: 3px;
	width: 26px;
	border-radius: 20px;
	transition: ease-in-out all .2s;
}

.icon-burger div:last-of-type {
	width: 12px;
}

.icon-burger:hover div {
	background-color: var(--Mint);
}

.icon-burger:hover div:first-of-type {
	width: 12px;
}

.icon-burger:hover div:last-of-type {
	width: 6px;
}

.desktop-svg .st0 {
	fill: #327ab7 !important;
}

@media(max-width: 1024px) {


	.icon-burger {
		position: relative;
		z-index: 1;
	}
}


/***********************************************************/
/*                     Buttons                             */
/***********************************************************/


.header-btn {
	background-color: var(--dark-red);
	color: var(--white);
	padding: 10px 32px;
	text-decoration: none;
	font-family: "Gabarito", sans-serif;
	font-size: 24px;
	line-height: 1em;
	font-weight: 700;
	text-transform: uppercase;
	transition: ease-in-out all .3s;
	display: flex;
	align-items: center;
	gap: 2px;
}

.header-btn svg {
	height: 40px;
	width: 33px;
	flex-shrink: 0;
	margin-top: -11px;
}

.header-btn:hover {
	background-color: var(--dark-blue);
}


.desktop-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.mobile-header {
	display: none;
}


.btn:hover,
.nav-btn a:hover,
.gform_next_button:hover,
.gform_previous_button:hover {
	background-color: var(--Dark-mint) !important;
	border-radius: 16px !important;
}

.main-nav .btn:hover {
	border-radius: 8px;
}


/* Naviation */
.btn svg,
.nav-btn svg {
	transition: ease-in-out all .3s;
	position: relative;
	left: 0;
}

.nav-btn a:hover svg {
	left: 5px;
}


/* Off Canvas Menu Panels */
/* Off-canvas panel */
.offcanvas-wrap {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background: var(--dark-blue);
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
	transition: right 0.3s ease, background 0.3s ease;
	z-index: 9999;
	overflow-x: hidden;
	overflow-y: auto;
}

.offcanvas-wrap.submenu-open {
	background: #449CB5;
}

/* Show the panel */
.offcanvas-wrap.open {
	right: 0;
}

/* Close button */
.offcanvas-wrap .close {
	position: absolute;
	top: 1rem;
	right: 2rem;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0px;
}

/* Prevent scrolling when menu is open */
body.offcanvas-open {
	overflow: hidden;
}

/* Optional overlay behind menu */
.offcanvas-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 10;
}

/* Show overlay */
body.offcanvas-open .offcanvas-overlay {
	opacity: 1;
	visibility: visible;
}

.offcanvas-inner-wrap {
	display: flex;
	flex-direction: row;
	transition: transform 0.4s ease;
	width: 100%;
	padding: 0 20px;
	margin-top: 200px;
}

.offcanvas-panel {
	width: 100%;
	flex-shrink: 0;
	/* padding: 1.5rem; */

}

.offcanvas-back {
	font-weight: bold;
	margin-bottom: 1rem;
	display: block;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 20px;
}

@media(max-width: 768px) {
	.offcanvas-back {
		margin-left: 0px;
	}
}

.offcanvas-back span {
	font-size: 24px;
	color: var(--white);
	opacity: 1;
	transition: ease-in-out all .2s;
}

.offcanvas-back svg {
	position: relative;
	left: 0;
	transition: ease-in-out all .3s;
}

.offcanvas-back:hover svg {
	left: -3px;
	fill: var(--Mint);
}

.offcanvas-back:hover span {
	opacity: .7;
}

.offcanvas-panel a {
	height: 80px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--white);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding-left: 20px;
	transition: ease-in-out all .3s;
	border-top: solid #DAC4AE 2px;
	justify-content: space-between;
	width: 87%;
}

.nav-btn a {
	background-color: var(--Canales-cobalt);
	display: flex;
	padding: 12px 26px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;
	color: var(--White);
	text-decoration: none;
	font-weight: 700;
	transition: ease-in-out all .3s;
	width: 267px;
	height: 80px;
	font-size: 2rem;
	border-top: none;
}

.offcanvas-wrap .close {
	top: 40px;
	transition: ease-in-out all .3s;
}

.offcanvas-wrap .close:hover {
	transform: scale(.9);
}

.offcanvas-panel a:hover {
	background-color: #449CB5;
}

.offcanvas-panel ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.offcanvas-wrap .btn {
	padding: 26px;
	width: 235px;
	margin-left: 100px;
}

.submenu-chevron {
	display: inline-block;
	margin-left: 0.5em;
	transition: transform 0.3s ease;
	font-size: 1.2em;
	line-height: 1;
	vertical-align: middle;
	margin-right: 20px;
}

.submenu-chevron svg {
	width: 25px;
	fill: #C53058;
}

/* Optional: animate chevron on hover */
.menu-item-has-children>a:hover .submenu-chevron {
	transform: translateX(4px);
	/* or rotate(90deg) for dropdown look */
}

/* Offcanvas button container */
.offcanvas-button-container {
	padding: 20px;
	margin-top: 20px;
}

/* Offcanvas button styles */
.offcanvas-btn {
	width: 135px;
	text-align: center;
	margin: 0;
}

.menu-main-menu {
	margin: 0;
	padding: 0;
}

.offcanvas-wrap .site-logo {
	padding-left: 20px;
	padding-top: 35px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.nav-btn {
	left: 0;
	margin-left: 0px !important;
	margin-top: 30px;
}

@media(max-width: 768px) {
	.site-header .container{
		padding: 0px;
	}

	.site-header {
		background-color: var(--dark-blue);
		padding-top: 30px;
		padding-bottom: 0px;
	}

	#container {
		padding-top: 153px;
	}

	body.admin-bar #container {
        padding-top: calc(153px - 46px);
    }


	.desktop-header {
		display: none !important;
	}

	.mobile-header {
		display: block;
		width: 100%;
	}


	.mobile-row-1 {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		margin-bottom: 20px;
	}

	.mobile-row-1 .site-logo img {
		width: 250px;
	}

	.mobile-row-1 .mobile-burger {
		padding-right: 0px;
	}

	.mobile-row-2 {
		display: flex;
		gap: 0;
		width: 100%;
	}

	.mobile-row-2 .header-btn,
	.mobile-row-2 .header-btn-call-us {
		flex: 1;
		flex-basis: 50%;
		text-align: center;
		justify-content: center;
		padding: 9px 13px;
		font-size: 16px;
		gap: 4px;
		display: inline-flex;
	}

	.mobile-row-2 .header-btn-call-us {
		background-color: #449CB5;
	}
	.mobile-row-2 .header-btn-call-us:hover {
		background-color: #F4B147;
	}

	.mobile-row-2 .header-btn svg {
		height: 40px;
		width: 26px;
		flex-shrink: 0;
		margin-top: -5px;
	}

	.offcanvas-wrap {
		max-width: 100%;
	}

	.offcanvas-wrap #menu-main-menu {
		padding-left: 0px;
	}

	.offcanvas-panel {
		width: 100vw;
	}

	.offcanvas-wrap .close {
		left: 0;
		text-align: right;
		width: fit-content;
		margin: 0 auto;
		margin-right: 0;
	}

	.offcanvas-back span {
		font-size: 24px;
	}

	.offcanvas-panel .nav-btn a {
		height: 75px;
		width: 275px;
		padding: 0;
		margin: 0 auto;
		position: relative;
		left: -30px;
	}

	.offcanvas-back {
		margin-top: 20px;
		padding-left: 20px;
	}

	.sub-menu {
		padding-left: 0;
	}

	.site-logo img {
		width: 250px;
		padding-left: 0;
	}
}

@media(max-width: 420px) {
	.offcanvas-panel a {
		width: 83%;
	}
}


.nav-btn a {
	padding: 0 26px;
}

@media (max-width: 768px) {

	.offcanvas-inner-wrap {
		width: 100%;
		display: block;
		position: relative;
		transform: none !important;
		padding: 0 20px;
	}

	.offcanvas-panel {
		width: 100%;
		display: none;
	}

	.offcanvas-panel.active {
		display: block;
	}

	/* Optional: reset horizontal transform in case resized from desktop */
	.offcanvas-inner-wrap {
		transform: none !important;
	}

	/* Button container same as desktop */
	.offcanvas-button-container {
		padding: 20px;
		margin-top: 20px;
	}

	.offcanvas-btn {
		width: 135px;
		text-align: center;
		margin: 0;
		display: flex;
		justify-content: center;
	}
}


.picture-dots {
	position: relative;
	display: inline-block;
}

.animated-dots {
	position: absolute;
	top: 50px;
	left: -180px;
	width: 100%;
	height: 550px;
	pointer-events: none;
	overflow: visible !important;
}

.wave-wrapper {
	width: 100%;
	height: 150px;
	/* You control distortion here */
	overflow: hidden;
}

.wave {
	width: 100%;
	height: 100%;
	display: block;
	preserveAspectRatio: none;
}

.picture-wave-svg {
	overflow: visible !important;
}

.picture-wave-svg .st0 {
	fill: #00c1d5;
	animation: pulse 3s infinite ease-in-out;
	transform-origin: center;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.05);
		opacity: 0.5;
	}
}



@media(max-width: 768px) {
	.animated-dots {
		top: 31px;
		left: -80px;
		width: 100%;
		height: 100%;
	}

	.wave-wrapper {
		width: 100%;
		height: 60px;
		/* You control distortion here */
		overflow: hidden;
	}
}


/***********************************************
    scroll animation 
************************************************/
.animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	filter: blur(10px);
	transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
	transition-delay: 0s;
	/* Default delay, overridden by JS */
}

/* Final state after the element comes into view */
.animate-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

@keyframes floating-bulbs {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 50%;
	}

	50% {
		transform: translateY(-500px) rotate(0deg);
		opacity: 0.1;
		border-radius: 50%;
	}

	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

/* Homes Popup Styles */
.homes-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.homes-popup-overlay.show {
	display: flex;
}

.homes-popup-content {
	background: white;
	max-width: 1210px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	padding: 30px;
	margin: 20px;
}

.homes-popup-close {
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
	z-index: 10000;
	transition: background-color 0.3s ease;
}


.homes-popup-close svg {
	height: 36px;
	width: 36px;
	pointer-events: none;
}

.homes-popup-body {
	display: block;
}

.homes-popup-title {
	font-family: "RedHatDisplay", sans-serif;
	font-size: 42px;
	line-height: 1.4em;
	font-weight: 800;
	margin-bottom: 35px;
	text-align: center;
	color: var(--dark-blue);
}

.homes-popup-image {
	width: 100%;
	height: 350px;
	margin-bottom: 50px;
	overflow: hidden;
}

.homes-popup-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.homes-popup-content-text {
	margin-bottom: 50px;
	font-family: 'RedHatDisplay', sans-serif;
	line-height: 1.4em;
	font-size: 20px;
	font-weight: 400;

}

.homes-popup-excerpt {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
	text-align: center;
	padding-top: 15px;
	background-color: #71C4A0;
	color: #FFF;
	padding: 40px 70px;
}

.homes-popup-excerpt span {
	font-weight: 700;
}

@media (max-width: 768px) {
	.homes-popup-content {
		margin: 10px;
		padding: 20px;
	}

	.homes-popup-title {
		font-size: 32px;
	}

	.homes-popup-close {
		position: absolute;
		top: 15px;
		right: 15px;
	}

	.homes-popup-close svg {
		height: 20px;
		width: 20px;
	}

	.homes-popup-image {
		height: 250px;
		margin-bottom: 15px;
	}

	.homes-popup-excerpt {
		padding: 40px 20px;
	}
}




/***********************************************************/
/*                    Form Contact               */
/***********************************************************/


.form-contact .ginput_complex label,
.gform_wrapper.gravity-theme .form-contact .gfield_label {
	font-family: 'Bitter', sans-serif;
	font-size: 20px !important;
	font-weight: 400;
	line-height: 1.3;
	color: #1B4056;
	margin-bottom: 10px;
}

.gform_wrapper.gravity-theme .form-contact .gfield_required {
	display: none !important;
}

.gform_wrapper.gravity-theme .form-contact .gfield input {
	border-radius: 2px;
	border: 2px solid #1B4056;
	padding: 10px;
	font-size: 16px;
	font-family: 'Bitter', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	color: #1B4056;
}

.gravity-theme.gform_validation_error .gform_validation_errors {
	display: none;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
	padding: 0px;
	background-color: transparent;
	border: none;
}



.gform_wrapper.gravity-theme .form-contact .gform_fields {
	grid-row-gap: 30px;
}

.gform_wrapper.gravity-theme .form-contact .gform_footer {
	margin-top: 14pxs;
}


/* Styles for consent checkbox container */
.sms-consent-container {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 10px;
	border-radius: 8px;
}

/* Custom checkbox styles */
.sms-consent-checkbox {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.sms-consent-checkbox input[type="checkbox"] {
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

/* Custom checkbox appearance */
.sms-consent-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: #fff;
	border: 2px solid #1B4056;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Hover effect */
.sms-consent-checkbox:hover .checkmark {
	border-color: #1D4572;
	box-shadow: 0 0 0 2px rgba(50, 122, 183, 0.1);
}

/* Checked state */
.sms-consent-checkbox input:checked~.checkmark {
	background-color: #1B4056;
	border-color: #1B4056;
}

/* Checkmark */
.sms-consent-checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.sms-consent-checkbox input:checked~.checkmark:after {
	display: block;
}

/* Consent text styles */
.sms-consent-text {
	font-size: 14px;
	line-height: 1.4;
	color: #42464A;
	margin: 0;
	flex: 1;
}

.gform_wrapper.gravity-theme .form-contact .gfield_checkbox {
	display: flex;
	flex-direction: column;
	row-gap: 8px;
}

/* Custom styles for Gravity Forms checkboxes */
.gform_wrapper.gravity-theme .form-contact .gfield_checkbox .gchoice input[type="checkbox"] {
	border-radius: 2px;
	border: 2px solid #1B4056;
	padding: 10px;
	font-size: 16px;
	font-family: 'Bitter', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	color: #1B4056;
	background: #fff;
	width: 24px;
	height: 24px;
}

.gform_wrapper.gravity-theme .form-contact .gchoice {
	display: flex;
}

/* More specific checkbox styles */
.gform_wrapper .gfield_checkbox .gchoice input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 2px solid #1B4056;
	border-radius: 2px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	cursor: pointer;
	position: relative;
	margin: 0 8px 0 0;
	vertical-align: middle;
}

.gform_wrapper .gfield_checkbox .gchoice input[type="checkbox"]:checked {
	background-color: #1B4056 !important;
	border-color: #1B4056;
}

.gform_wrapper .gfield_checkbox .gchoice input[type="checkbox"]:checked::after {
	content: "✓";
	color: white;
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gform_wrapper .gfield_checkbox .gchoice input[type="checkbox"]:focus {
	outline: 2px solid #1B4056;
	outline-offset: 2px;
}

/* Checkbox label styles */
.gform_wrapper .gfield_checkbox .gchoice label {
	font-family: 'Bitter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: #1B4056;
	cursor: pointer;
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.gform_wrapper.gravity-theme .form-contact input[type="submit"] {
	padding: 13px 70px;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 900;
	background-color: #1B4056;
	color: #FFF;
	border-radius: 40px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gform_wrapper.gravity-theme .form-contact .gfield_checkbox label {
	font-family: "Bitter", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: #1B4056;
}

.gform_wrapper.gravity-theme .form-contact .gfield--type-checkbox .gfield_description {
	font-family: "Red Hat Display", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: #000;
	font-style: italic;
}

.gform_wrapper.gravity-theme .form-contact input[type="submit"]:hover {
	background-color: #1D4572;
}

.gform_wrapper.gravity-theme .form-contact input[type="submit"]:disabled {
	background-color: #1D4572;
}


.sms-consent-text a {
	color: #327AB7;
	text-decoration: underline;
}

.sms-consent-text a:hover {
	color: #1D4572;
}

/* Required field indicator */
.sms-consent-required {
	color: #C53058;
	font-weight: bold;
}

/* Error state */
.sms-consent-container.sms-consent-error-state {
	border-color: #C53058;
	background-color: #fef2f2;
}

.sms-consent-container.sms-consent-error-state .checkmark {
	border-color: #C53058;
}

.sms-consent-container.sms-consent-error-state .sms-consent-text {
	color: #C53058;
}

/* Responsive design */
@media (max-width: 768px) {
	.sms-consent-container {
		padding: 12px;
		gap: 10px;
	}

	.sms-consent-text {
		font-size: 13px;
	}
}

/***********************************************************/
/*                     Filter Color Override               */
/***********************************************************/
.elementor-element.elementor-element-8abc8ae.filter-color .e-filter-item:not([aria-pressed=true]):not(:hover) {
	background-color: var(--e-global-color-1a7eb04) !important;
}

.elementor-element.elementor-element-8abc8ae.filter-color .e-filter-item:nth-child(1):not([aria-pressed=true]):not(:hover) {
	background-color: #C53058 !important;
}

.elementor-element.elementor-element-8abc8ae.filter-color .e-filter-item:nth-child(2):not([aria-pressed=true]):not(:hover) {
	background-color: #7A467E !important;
}

.elementor-element.elementor-element-8abc8ae.filter-color .e-filter-item:nth-child(3):not([aria-pressed=true]):not(:hover) {
	background-color: #449CB5 !important;
}

.elementor-element.elementor-element-8abc8ae.filter-color .e-filter-item:nth-child(4):not([aria-pressed=true]):not(:hover) {
	background-color: #C53058 !important;
}
.elementor-element.elementor-element-8abc8ae.filter-color .e-filter-item:nth-child(5):not([aria-pressed=true]):not(:hover) {
	background-color: #F39200 !important;
}

.elementor-element.elementor-element-8abc8ae.filter-color .e-filter-item {
	transition: background-color 0.3s ease, color 0.3s ease;
}

/***********************************************************/
/*                     Category Card Colors                */
/***********************************************************/

/* Ensure smooth transitions for category cards */
.category-card .elementor-widget-container {
	transition: background-color 0.3s ease;
}




/***********************************************************/
/*                     Our Homes Block                     */
/***********************************************************/

.our-homes {
	margin-bottom: 0;
}

.homes-block {
	height: 100%;
}

@media(max-width: 780px) {
	.our-homes {
		min-height: 350px;
		padding: 30px 15px;
	}
}



/***********************************************************/
/*                    Event                      */
/***********************************************************/
.events-single #tribe-events-pg-template {
	min-width: 100%;
	padding: 0px;
}

.btn-event .tec-events-elementor-event-widget__export-dropdown .tec-events-elementor-event-widget__export-dropdown-button {
	padding: 16px 30px;
	border-radius: 40px;
}

.btn-event .tec-events-elementor-event-widget__export-dropdown-export-icon {
	display: none;
}

/* Events List Top Section */
.section-event-top {
	background-color: #C53058;
	color: #FFF;
	padding: 0;
	display: flex;
	height: 345px;
	overflow: hidden;
}

.section-event-top__inner {
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	padding: 40px 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: stretch;
}

.section-event-top__title {
	font-family: "Gabarito", Sans-serif;
	font-size: 60px;
	font-weight: 600;
	line-height: 1.2em;
	margin: 0;
}

.section-event-top__left {
	display: flex;
	align-items: center;
	align-items: flex-end;
	justify-content: flex-end;
	width: 100%;
	padding-bottom: 60px !important;
}

.section-event-top__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.section-event-top__image {
	max-height: 100%;
	max-width: 100%;
	width: 100%;
	height: 100%!important;
	object-fit: cover;
	object-position: center right;
	display: block;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-events-bar--border {
	border: 2px solid #1B4056 !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
	padding-top: 50px !important;
}

.post-type-archive-tribe_events .tribe-events .tribe-events-c-search__button,
.post-type-archive-tribe_events .tribe-events button.tribe-events-c-search__button {
	background-color: #1B4056 !important;
	padding: 12px 24px !important;
	border-radius: 40px !important;
	color: #FFF !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.4em !important;
	font-family: "RedHatDisplay", Sans-serif !important;
}

.post-type-archive-tribe_events .tribe-common--breakpoint-full.tribe-events .tribe-events-c-top-bar__datepicker-desktop {
	color: #C53058 !important;
	font-family: "RedHatDisplay", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
}

.post-type-archive-tribe_events .tribe-events-calendar-latest-past__event-date-tag-daynum {
	font-family: "Bitter", sans-serif !important;
	font-size: 40px !important;
	font-weight: 700 !important;
	line-height: 1.2em !important;
	color: #1B4056 !important;
}

.tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
	font-family: "RedHatDisplay", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.2em !important;
	color: #1B4056 !important;
	text-transform: uppercase !important;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-h3--min-medium{
	font-family: "RedHatDisplay", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.2em !important;
	color: #1B4056 !important;
}

.tribe-events .tribe-events-calendar-latest-past__event-date-tag-month{
	font-family: "RedHatDisplay", sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2em !important;
    color: #1B4056 !important;
    text-transform: uppercase !important;
}

.tribe-common .tribe-common-c-btn-icon--caret-left:disabled .tribe-common-c-btn-icon__icon-svg path, .tribe-common .tribe-common-c-btn-icon--caret-right:disabled .tribe-common-c-btn-icon__icon-svg path {
    fill: var(--dark-red)!important;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-h6--min-medium {
	font-family: "Bitter", sans-serif !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 1.2em !important;
	color: #1B4056 !important;
}

.tribe-events-calendar-latest-past__event-date-tag-day {
	font-family: "RedHatDisplay", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
}

.tribe-events button.tribe-events-c-top-bar__datepicker-button:hover {
	background-color: transparent !important;
}

.tribe-common .tribe-common-c-btn-border {
	border-radius: 40px;
	font-family: "RedHatDisplay-Black", sans-serif !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	background-color: #1B4056 !important;
	color: #FFF !important;
	padding: 11px 24px !important;
	border: none !important;
}


.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-c-btn-border-small,
.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common a.tribe-common-c-btn-border-small {
	background-color: #C53058 !important;
	color: #FFF !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.4em !important;
	font-family: "RedHatDisplay", Sans-serif !important;
	border-radius: 40px !important;
}

.post-type-archive-tribe_events .tribe-events-c-top-bar__nav-list-item {
	padding-right: 5px !important;
}

.post-type-archive-tribe_events .tribe-events-calendar-latest-past__event-date-tag-year {
	display: none !important;
}

.tribe-common a:not(.tribe-common-anchor--unstyle), .tribe-common a:not(.tribe-common-anchor--unstyle):active, .tribe-common a:not(.tribe-common-anchor--unstyle):focus, .tribe-common a:not(.tribe-common-anchor--unstyle):hover, .tribe-common a:not(.tribe-common-anchor--unstyle):visited{
	color: var(--dark-blue) !important;
}

.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-b2 {
	font-family: "RedHatDisplay", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.2em !important;
	color: #1B4056 !important;
	margin-bottom: 10px !important;
}

.tribe-events .tribe-events-c-nav__prev:disabled .tribe-events-c-nav__prev-icon-svg path, .tribe-events button.tribe-events-c-nav__prev:disabled .tribe-events-c-nav__prev-icon-svg path{
	fill: var(--dark-red) !important;
}

.tribe-events .tribe-events-c-nav__next:disabled .tribe-events-c-nav__next-icon-svg path, .tribe-events button.tribe-events-c-nav__next:disabled .tribe-events-c-nav__next-icon-svg path{
	fill: var(--dark-red) !important;
}

.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-events-calendar-list__event-header .tribe-events-calendar-list__event-venue.tribe-common-b2{
	font-weight: 400 !important;
}

.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-b2--bold{
	font-weight: 400 !important;
}

.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-events-calendar-latest-past__event-venue-address{
	font-weight: 400 !important;
}


.tribe-events-c-nav__list .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--prev button.tribe-events-c-nav__prev.tribe-common-b2.tribe-common-b1--min-medium,
.tribe-events-c-nav__list .tribe-events-c-nav__list-item.tribe-events-c-nav__list-item--next button.tribe-events-c-nav__next.tribe-common-b2.tribe-common-b1--min-medium{
	font-family: "RedHatDisplay", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.2em !important;
	color: var(--dark-red) !important;
} 

.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-h4--min-medium {
	font-family: "Bitter", sans-serif !important;
	font-size: 38px !important;
	font-weight: 400 !important;
	line-height: 1.2em !important;
	color: #1B4056 !important;
	margin-bottom: 10px !important;
}

.post-type-archive-tribe_events .tribe-events-calendar-latest-past__event-venue,
.post-type-archive-tribe_events .tribe-events-calendar-latest-past__event-description {
	font-family: "RedHatDisplay", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.2em !important;
	color: #373737 !important;
}

.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-common .tribe-common-b3 {
	font-family: "Bitter", sans-serif !important;
	font-size: 20px !important;
	font-weight: 700;
	line-height: 1.2em !important;
	color: #c53058 !important;
	margin-bottom: 0 !important;
}

.post-type-archive-tribe_events .tribe-events-calendar-latest-past__event-date-tag-datetime .tribe-events-calendar-latest-past__event-date-tag-daynum.tribe-common-h5.tribe-common-h4--min-medium{
    font-family: "Bitter", sans-serif !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 1.2em !important;
    color: #1B4056 !important;
}

.post-type-archive-tribe_events .tribe-common-g-row.tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-date-tag .tribe-events-calendar-list__event-date-tag-datetime .tribe-events-calendar-list__event-date-tag-daynum.tribe-common-h5.tribe-common-h4--min-medium{
	font-family: "Bitter", sans-serif !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 1.2em !important;
    color: #1B4056 !important;

}

@media (max-width: 768px) {
	.section-event-top {
		height: auto;
	}
	
	.section-event-top__inner {
		grid-template-columns: 1fr;
		padding: 0;
		gap: 0;
	}

	.section-event-top__left {
		align-items: center;
        justify-content: center;
        height: 80px;
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
        background-color: transparent;
	}

	.section-event-top__title {
		font-size: 32px;
		text-align: center;
	}

	.section-event-top__right {
		justify-content: center;
		height: 250px;
	}

	.section-event-top__image {
		height: 250px !important;
		width: 100%;
		object-fit: cover;
	}
}


.venue-block .tec-events-elementor-event-widget__venue {
	display: flex;
	flex-direction: column;
}

.venue-block .tec-events-elementor-event-widget__venue-container {
	margin: 0px !important;
	border: 0px !important;
	grid-template-rows: 1fr !important;
}

.venue-block .tec-events-elementor-event-widget__venue-details {
	margin: 0px !important;
	padding: 0px !important;
}

.venue-block .tec-events-elementor-event-widget__venue-name {
	margin: 0px !important;
}

.venue-block .tec-events-elementor-event-widget__venue-address-address {
	font-style: normal !important;
}

@media (max-width: 767px) {
	.title-element-orange {
		left: 33% !important;
		transform: translateX(-50%) !important;
	}
	
}

@media (max-width: 520px) {
	.title-element-orange {
		left: 23% !important;
		transform: translateX(-50%) !important;
	}
}


.elementor-loop-container .e-loop-item:not(:first-child) .our-homes {
    display: none !important;
}

.elementor-loop-container .e-loop-item:first-child .our-homes {
    display: flex !important;
}
