/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.site-preloader {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	background: #f7f7f7;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition:
		opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 780ms;
}

.site-preloader__message {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(1500px, calc(100vw - 48px));
	margin: 0;
	color: #1f1f1f;
	font-family: "Cormorant Garamond", Garamond, "Times New Roman", serif;
	font-size: clamp(56px, 5.52vw, 106px);
	font-weight: 500;
	font-style: normal;
	line-height: 1.1698113208;
	letter-spacing: 0;
	text-align: center;
	text-wrap: balance;
	transform: translate(-50%, -50%);
	opacity: 1;
}

.site-preloader__message span {
	display: block;
	margin: 0;
	white-space: nowrap;
}

body.site-loaded .site-preloader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

body.site-loaded .site-preloader__message {
	opacity: 0;
	transform: translate(-50%, calc(-50% - 10px));
	transition:
		opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.site-preloader-complete .site-preloader {
	display: none;
}

@media (max-width: 1024px) {
	.site-preloader__message {
		width: min(900px, calc(100vw - 40px));
		font-size: clamp(40px, 8.2vw, 76px);
		line-height: 1.16;
	}
}

@media (max-width: 900px) {
	.site-preloader__message span {
		white-space: normal;
	}
}

@media (max-width: 767px) {
	.site-preloader__message {
		width: min(460px, calc(100vw - 32px));
		font-size: clamp(36px, 10.5vw, 52px);
		line-height: 1.12;
	}
}

@media (max-width: 390px) {
	.site-preloader__message {
		font-size: clamp(33px, 10vw, 40px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-preloader,
	.site-preloader__message,
	body.site-loaded .site-preloader__message {
		transition-duration: 1ms;
	}
}

.contact-form-style {
	--contact-form-bg: #f6f3ee;
	--contact-form-text: #0c0e12;
	--contact-form-primary: #2b2b2b;
	--contact-form-border: rgba(0, 0, 0, 0.12);
	--contact-form-muted: rgba(0, 0, 0, 0.3);
	--contact-form-error: #8f2d22;
	--contact-form-error-bg: rgba(143, 45, 34, 0.08);
	--contact-form-error-border: rgba(143, 45, 34, 0.34);
	width: min(1072px, 100%);
	margin-inline: auto;
}

.contact-form-style .gform_wrapper.gravity-theme,
.contact-form-style .gform_wrapper.gform-theme--no-framework {
	margin: 0;
	color: var(--contact-form-text);
	font-family: "Inter", Arial, sans-serif;
}

.contact-form-style .gform_heading,
.contact-form-style .gfield_label,
.contact-form-style .gfield_required,
.contact-form-style .gform_required_legend {
	display: none;
}

.contact-form-style .gform_wrapper.gravity-theme .gform_fields,
.contact-form-style .gform_wrapper.gform-theme--no-framework .gform_fields {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(22px, 1.56vw, 30px);
	row-gap: clamp(18px, 1.56vw, 30px);
}

.contact-form-style .gform_wrapper.gravity-theme .gfield,
.contact-form-style .gform_wrapper.gform-theme--no-framework .gfield {
	grid-column: 1 / -1;
	margin: 0;
}

.contact-form-style .gform_wrapper.gravity-theme .gfield--width-half,
.contact-form-style .gform_wrapper.gform-theme--no-framework .gfield--width-half {
	grid-column: span 6;
}

.contact-form-style input[type="text"],
.contact-form-style input[type="email"],
.contact-form-style input[type="tel"],
.contact-form-style textarea {
	width: 100% !important;
	height: clamp(56px, 3.28vw, 63px) !important;
	min-height: clamp(56px, 3.28vw, 63px) !important;
	margin: 0 !important;
	padding: 8px clamp(20px, 1.56vw, 30px) !important;
	border: 1px solid var(--contact-form-border) !important;
	border-radius: 10px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--contact-form-muted) !important;
	font-family: "Inter", Arial, sans-serif;
	font-size: 20px !important;
	font-weight: 400;
	font-style: normal;
	line-height: 32px !important;
	letter-spacing: 0;
	outline: 0;
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		box-shadow 180ms ease;
}

.contact-form-style textarea {
	display: block;
	height: clamp(200px, 11.77vw, 226px) !important;
	min-height: clamp(200px, 11.77vw, 226px) !important;
	padding-top: clamp(18px, 1.56vw, 30px) !important;
	resize: vertical;
}

.contact-form-style input::placeholder,
.contact-form-style textarea::placeholder {
	color: var(--contact-form-muted);
	font-family: "Inter", Arial, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	opacity: 1;
}

.contact-form-style input:focus,
.contact-form-style textarea:focus {
	border-color: rgba(0, 0, 0, 0.34);
	background-color: rgba(255, 255, 255, 0.22);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.035);
}

.contact-form-style .gfield_checkbox {
	margin: 0;
}

.contact-form-style .gchoice {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 12px;
	align-items: flex-start;
}

.contact-form-style .gform_wrapper.gravity-theme .gfield-choice-input {
	-webkit-appearance: none !important;
	appearance: none !important;
	position: relative;
	z-index: 2;
	accent-color: #2b2b2b;
	flex: 0 0 20px;
	width: 20px !important;
	min-width: 20px !important;
	height: 20px !important;
	min-height: 20px !important;
	margin: 5px 0 0 !important;
	opacity: 0;
	border: 1px solid rgba(0, 0, 0, 0.5) !important;
	border-radius: 2px !important;
	background: var(--contact-form-bg) !important;
	background-color: var(--contact-form-bg) !important;
	cursor: pointer;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.contact-form-style .gfield-choice-input:focus-visible {
	box-shadow: 0 0 0 3px rgba(43, 43, 43, 0.16);
}

.contact-form-style .gform-field-label--type-inline,
.contact-form-style .gfield_html {
	color: var(--contact-form-text);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0;
}

.contact-form-style .gform-field-label--type-inline {
	display: block;
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
}

.contact-form-style .gform-field-label--type-inline::before,
.contact-form-style .gform-field-label--type-inline::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.contact-form-style .gform-field-label--type-inline::before {
	top: 3px;
	left: -32px;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 2px;
	background: #f6f3ee;
}

.contact-form-style .gfield-choice-input:checked + .gform-field-label--type-inline::before {
	border-color: #2b2b2b;
	background: #2b2b2b;
}

.contact-form-style .gfield-choice-input:checked + .gform-field-label--type-inline::after {
	top: 6px;
	left: -25px;
	width: 6px;
	height: 11px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.contact-form-style .gfield_html p {
	margin: 0;
}

.contact-form-style .gform_footer,
.contact-form-style .gform-footer {
	display: flex !important;
	flex-direction: column;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: clamp(10px, 0.84vw, 16px) !important;
	margin: clamp(18px, 1.25vw, 24px) 0 0 !important;
	padding: 0 !important;
}

.contact-form-style .gform_footer::after,
.contact-form-style .gform-footer::after {
	content: "Private. Thoughtful. No pressure.";
	display: block;
	color: var(--contact-form-text);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.contact-form-style .gform_button.button,
.contact-form-style input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: clamp(204px, 14.27vw, 274px) !important;
	height: clamp(54px, 4.17vw, 63px) !important;
	min-height: 0 !important;
	align-self: flex-start !important;
	margin: 0 !important;
	padding: 10px !important;
	border: 1px solid var(--contact-form-primary) !important;
	border-radius: 10px !important;
	background: var(--contact-form-primary) !important;
	color: #fff !important;
	font-family: "Inter", Arial, sans-serif;
	font-size: clamp(15px, 1.04vw, 20px) !important;
	font-weight: 500;
	line-height: clamp(24px, 1.67vw, 32px) !important;
	letter-spacing: 0;
	text-align: center;
	cursor: pointer;
	transition:
		color 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease;
}

.contact-form-style .gform_button.button:hover,
.contact-form-style .gform_button.button:focus-visible,
.contact-form-style input[type="submit"]:hover,
.contact-form-style input[type="submit"]:focus-visible {
	border-color: var(--contact-form-primary) !important;
	background: transparent !important;
	color: var(--contact-form-primary) !important;
}

.contact-form-style .gform_button.button:active,
.contact-form-style input[type="submit"]:active {
	background: rgba(43, 43, 43, 0.06) !important;
}

.contact-form-style .gform_validation_errors {
	margin: 0 0 24px;
	padding: 18px 22px;
	border: 1px solid var(--contact-form-error-border);
	border-radius: 10px;
	background: var(--contact-form-error-bg);
	box-shadow: none;
	color: var(--contact-form-error);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	line-height: 26px;
}

.contact-form-style .gform_validation_errors *,
.contact-form-style .gfield_validation_message *,
.contact-form-style .validation_message * {
	font-family: "Inter", Arial, sans-serif !important;
}

.contact-form-style .gform_validation_errors h2,
.contact-form-style .gform_submission_error {
	margin: 0;
	color: var(--contact-form-error);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
}

.contact-form-style .gform-icon {
	display: none;
}

.contact-form-style .gfield_error input,
.contact-form-style .gfield_error textarea {
	border-color: var(--contact-form-error-border);
	background-color: var(--contact-form-error-bg);
}

.contact-form-style .gfield_validation_message,
.contact-form-style .validation_message {
	margin: 8px 0 0;
	padding: 6px 20px !important;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: var(--contact-form-error);
	font-family: "Inter", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

.contact-form-style .gform_ajax_spinner {
	margin-left: 12px;
}

.contact-form-style .gform_confirmation_wrapper {
	padding: 24px 30px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.2);
	color: var(--contact-form-text);
	font-family: "Inter", Arial, sans-serif;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
}

@media (max-width: 1024px) {
	.contact-form-style {
		width: min(100%, 860px);
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.contact-form-style .gform_wrapper.gravity-theme .gfield-choice-input + label {
		max-width: 100%;
		margin-bottom: 0;
		vertical-align: middle;
	}

	.contact-form-style .gform_fields {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.contact-form-style .gfield,
	.contact-form-style .gfield--width-half {
		grid-column: 1 / -1 !important;
		width: 100%;
	}

	.contact-form-style input[type="text"],
	.contact-form-style input[type="email"],
	.contact-form-style input[type="tel"],
	.contact-form-style textarea {
		height: auto !important;
		min-height: 58px !important;
		padding-inline: 18px;
		font-size: 16px !important;
		line-height: 26px !important;
	}

	.contact-form-style input::placeholder,
	.contact-form-style textarea::placeholder {
		font-size: 16px;
		line-height: 26px;
	}

	.contact-form-style #input_1_1::placeholder,
	.contact-form-style #input_1_3::placeholder,
	.contact-form-style #input_1_4::placeholder,
	.contact-form-style #input_1_5::placeholder,
	.contact-form-style #input_1_6::placeholder {
		font-size: clamp(11px, 3.1vw, 13px);
		line-height: 20px;
	}

	.contact-form-style textarea {
		height: 180px !important;
		min-height: 180px !important;
		padding-top: 20px;
	}

	.contact-form-style .gform-field-label--type-inline,
	.contact-form-style .gfield_html,
	.contact-form-style .gform_footer::after,
	.contact-form-style .gform-footer::after {
		font-size: 14px;
		line-height: 22px;
	}

	.contact-form-style .gform-field-label--type-inline {
		font-size: 16px;
		line-height: 26px;
	}

	.contact-form-style .gform_footer,
	.contact-form-style .gform-footer {
		gap: 20px;
		margin-top: 20px;
	}

	.contact-form-style .gform_button.button,
	.contact-form-style input[type="submit"] {
		width: 100%;
		min-width: 0;
		min-height: 64px;
		padding: 16px 20px;
		font-size: 16px;
		line-height: 26px;
	}
}
