
@layer bricks {
	@keyframes load8 {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes spin {
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes scrolling {
		0% {
			opacity: 1;
		}
		
		to {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px);
		}
	}
	
	:where(.brxe-form) {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	
	:where(.brxe-form) .label, :where(.brxe-form) label {
		color: inherit;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .4px;
		text-transform: uppercase;
	}
	
	:where(.brxe-form) .form-group {
		display: flex;
		flex-direction: column;
		padding: 0 0 20px;
		width: 100%;
	}
	
	:where(.brxe-form) .form-group.captcha, :where(.brxe-form) .form-group:last-child {
		padding-bottom: 0;
	}
	
	:where(.brxe-form) .form-group.captcha {
		line-height: 1;
	}
	
	:where(.brxe-form) .form-group.file {
		display: block;
	}
	
	:where(.brxe-form) .form-group.file > label.choose-files {
		margin-bottom: 0;
	}
	
	:where(.brxe-form) .form-group > .label {
		margin-bottom: 5px;
	}
	
	:where(.brxe-form) .form-group .form-group-error-message {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
		display: none;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) .form-group .form-group-error-message.show {
		display: block;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper {
		position: relative;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle {
		background: none;
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle span {
		display: flex;
	}
	
	:where(.brxe-form) .form-group .password-input-wrapper .password-toggle span.hide {
		display: none;
	}
	
	:where(.brxe-form) .submit-button-wrapper {
		width: auto;
	}
	
	:where(.brxe-form) .required:after {
		content: "*";
		padding: 0 2px;
		position: relative;
		top: -2px;
	}
	
	:where(.brxe-form) .options-wrapper {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	:where(.brxe-form) .options-wrapper input, :where(.brxe-form) .options-wrapper label {
		display: inline-block;
		height: auto;
		margin: 0 5px 0 0;
		width: auto;
	}
	
	:where(.brxe-form) .options-wrapper input[type=checkbox], :where(.brxe-form) .options-wrapper input[type=radio] {
		margin: initial;
		padding: initial;
		position: relative;
		top: 1px;
	}
	
	:where(.brxe-form) button[type=submit].sending {
		cursor: default;
	}
	
	:where(.brxe-form) button[type=submit].sending .text {
		opacity: .5;
	}
	
	:where(.brxe-form) button[type=submit].sending > i, :where(.brxe-form) button[type=submit].sending > svg {
		display: none;
	}
	
	:where(.brxe-form) button[type=submit].sending .loading {
		animation: load8 1s linear infinite;
		display: flex;
		opacity: 1;
	}
	
	:where(.brxe-form) button[type=submit].sending .loading svg {
		transform: scaleX(-1);
	}
	
	:where(.brxe-form) button[type=submit] .loading {
		display: none;
	}
	
	:where(.brxe-form) button[type=submit] svg {
		height: 1em;
		transform-origin: center;
	}
	
	:where(.brxe-form) .recaptcha-hidden {
		display: none;
	}
	
	:where(.brxe-form) .recaptcha-error {
		display: none;
		padding: 0 !important;
	}
	
	:where(.brxe-form) .recaptcha-error.show {
		display: block;
	}
	
	:where(.brxe-form) .recaptcha-error .brxe-alert.danger {
		align-items: center;
		background-color: var(--bricks-bg-danger);
		border-color: currentcolor;
		color: var(--bricks-text-danger);
		display: flex;
		justify-content: space-between;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) .hcaptcha-error {
		display: none;
		padding: 0 !important;
	}
	
	:where(.brxe-form) .hcaptcha-error.show {
		display: block;
	}
	
	:where(.brxe-form) .hcaptcha-error .brxe-alert.danger {
		align-items: center;
		background-color: var(--bricks-bg-danger);
		border-color: currentcolor;
		color: var(--bricks-text-danger);
		display: flex;
		justify-content: space-between;
		padding: 15px;
		width: 100%;
	}
	
	:where(.brxe-form) input[type=checkbox] + .label, :where(.brxe-form) input[type=checkbox] + label, :where(.brxe-form) input[type=radio] + .label, :where(.brxe-form) input[type=radio] + label {
		color: inherit;
		cursor: pointer;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		letter-spacing: inherit;
		line-height: inherit;
		text-align: inherit;
		text-transform: inherit;
	}
	
	:where(.brxe-form) textarea {
		height: inherit;
		resize: vertical;
	}
	
	:where(.brxe-form) .message {
		background-color: var(--bricks-bg-info);
		color: var(--bricks-text-info);
		display: flex;
		gap: 15px;
		justify-content: space-between;
		opacity: 1;
		padding-bottom: 0;
		position: relative;
		width: 100%;
	}
	
	:where(.brxe-form) .message.success {
		background-color: var(--bricks-bg-success);
		color: var(--bricks-text-success);
	}
	
	:where(.brxe-form) .message.error {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
	}
	
	:where(.brxe-form) .message .text {
		padding: 15px;
	}
	
	:where(.brxe-form) .message.closing {
		opacity: 0;
		transition: opacity .2s;
	}
	
	:where(.brxe-form) .message .close {
		all: unset;
		cursor: pointer;
		padding: 15px;
	}
	
	:where(.brxe-form) input.file, :where(.brxe-form) input[type=file] {
		display: block;
		height: 0;
		opacity: 0;
		width: 0;
	}
	
	:where(.brxe-form) .file-result {
		display: none;
		padding: 0;
	}
	
	:where(.brxe-form) .file-result.show {
		align-items: center;
		display: flex;
		margin: 0 0 15px;
	}
	
	:where(.brxe-form) .file-result.show.danger {
		background-color: var(--bricks-bg-danger);
		color: var(--bricks-text-danger);
		justify-content: space-between;
		padding: 15px;
	}
	
	:where(.brxe-form) .file-result.show.danger svg {
		cursor: pointer;
		height: 1em;
		margin-left: 5px;
	}
	
	:where(.brxe-form) .file-result.show.danger svg g {
		stroke: currentcolor;
	}
	
	:where(.brxe-form) .file-result.show .remove {
		display: inline-block;
		font-size: 12px;
		line-height: 30px;
		margin: 0 15px;
		padding: 0 10px;
	}
	
	:where(.brxe-form) .file-result.show .remove:hover {
		background-color: var(--bricks-text-danger);
		color: #fff;
	}
	
	:where(.brxe-form) .choose-files {
		align-self: flex-start;
		background-color: transparent;
		border: 1px solid var(--bricks-border-color);
		cursor: pointer;
		display: inline-block;
		font-family: inherit;
		font-size: 12px;
		font-weight: 600;
		line-height: 40px;
		padding: 0 15px;
		text-align: center;
		text-transform: none;
		white-space: nowrap;
		width: auto;
	}
	
	:where(.brxe-form) .choose-files:hover {
		background-color: rgba(0, 0, 0, .05);
	}
	
	:where(.brxe-form) .gallery-preview {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	:where(.brxe-form) .gallery-preview:not(:empty) + button {
		margin-top: 5px;
	}
	
	:where(.brxe-form) .image-preview {
		align-self: flex-start;
		overflow: hidden;
		position: relative;
	}
	
	:where(.brxe-form) .image-preview:hover button {
		opacity: 1;
	}
	
	:where(.brxe-form) .image-preview:has(img) + button {
		margin-top: 5px;
	}
	
	:where(.brxe-form) .image-preview button {
		background-color: #fff;
		border: none;
		left: 50%;
		opacity: 0;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}
	
	:where(.brxe-form) .image-preview button:hover {
		background-color: var(--bricks-text-danger);
		color: #fff;
	}
	
	:where(.brxe-form) .image-preview button.hide {
		display: none;
	}
	
	.grecaptcha-badge {
		visibility: hidden;
	}
}

@layer bricks {
	.brxe-button {
		width: auto;
	}
}

@layer bricks {
	:where(.brxe-heading).has-separator {
		align-items: center;
		display: inline-flex;
		gap: 20px;
	}
	
	:where(.brxe-heading) > [contenteditable] {
		display: inline-block;
		text-decoration: inherit;
	}
	
	:where(.brxe-heading) .separator {
		border-top: 1px solid;
		flex-grow: 1;
		flex-shrink: 0;
		height: 1px;
	}
}

@layer bricks {
	@keyframes load8 {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes spin {
		to {
			-webkit-transform: rotate(1turn);
			transform: rotate(1turn);
		}
	}
	
	@keyframes scrolling {
		0% {
			opacity: 1;
		}
		
		to {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px);
		}
	}
	
	a.brxe-image {
		display: inline-block;
	}
	
	figure.brxe-image {
		margin: 0;
	}
	
	:where(.brxe-image).tag {
		display: inline-block;
		height: fit-content;
		position: relative;
		width: auto;
	}
	
	:where(.brxe-image).caption {
		position: relative;
	}
	
	:where(.brxe-image).caption:has(figcaption.bricks-image-caption) {
		overflow: hidden;
	}
	
	:where(.brxe-image).overlay {
		position: relative;
	}
	
	:where(.brxe-image).overlay:before {
		bottom: 0;
		content: "";
		left: 0;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 0;
	}
	
	:where(.brxe-image):before {
		border-radius: inherit;
	}
	
	:where(.brxe-image) a {
		border-radius: inherit;
		position: static;
		transition: inherit;
	}
	
	:where(.brxe-image) picture {
		border-radius: inherit;
		transition: inherit;
	}
	
	:where(.brxe-image) img {
		border-radius: inherit;
		height: 100%;
		position: static !important;
		transition: inherit;
		width: 100%;
	}
	
	:where(.brxe-image) img.bricks-lazy-hidden + figcaption {
		display: none;
	}
	
	:where(.brxe-image) .icon {
		color: #fff;
		font-size: 60px;
		pointer-events: none;
		position: absolute;
		right: 50%;
		text-align: center;
		top: 50%;
		transform: translate(50%, -50%);
		z-index: 5;
	}
	
	:where(.brxe-image) .bricks-image-caption {
		background: linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .25) 70%, transparent);
		bottom: 0;
		color: #fff;
		font-size: inherit;
		margin: 0;
		padding: 10px 15px;
		pointer-events: none;
		position: absolute;
		text-align: center;
		width: 100%;
		z-index: 1;
	}
}

#brxe-bc1a41 {
	max-width: 300px;
	width: 100%;
}

#brxe-1710dd {
	margin-top: 40px;
	margin-bottom: 40px;
	color: #00463b;
	font-size: 143px;
	text-align: center;
	line-height: 143px;
}

@media (max-width: 991px) {
	#brxe-1710dd {
		font-size: 53.76px;
		line-height: 53.76px;
	}
}

@media (max-width: 767px) {
	#brxe-1710dd {
		font-size: 26.25px;
		line-height: 26.25px;
	}
}

#brxe-4398c3 {
	color: #fff;
	font-size: 51px;
	line-height: 51px;
	font-family: "Order &ndash; January 5, 2026 @ 12:48 PM";
	background-color: #00463b;
	border: 4px solid #000;
	border-radius: 3px;
}

@media (max-width: 767px) {
	#brxe-4398c3 {
		font-size: 27px;
	}
}

#brxe-f8f1b4 {
	align-items: center;
	margin-top: 60px;
	margin-bottom: 50px;
	border-bottom: 14px solid #000;
	padding-bottom: 100px;
}

@media (max-width: 478px) {
	#brxe-f8f1b4 {
		width: 90%;
	}
}

#brxe-d7f0b5 {
	max-width: 300px;
	width: 100%;
}

#brxe-711ec4 {
	margin-top: 40px;
	margin-bottom: 40px;
	color: #c65900;
	font-size: 143px;
	text-align: center;
	line-height: 143px;
}

@media (max-width: 991px) {
	#brxe-711ec4 {
		font-size: 53.76px;
		line-height: 53.76px;
	}
}

@media (max-width: 767px) {
	#brxe-711ec4 {
		font-size: 26.25px;
		line-height: 26.25px;
	}
}

#brxe-76ac38 {
	color: #000;
	font-size: 51px;
	line-height: 51px;
	font-family: "Order &ndash; January 5, 2026 @ 12:48 PM";
	background-color: #e09900;
	border: 4px solid #000;
	border-radius: 3px;
}

@media (max-width: 767px) {
	#brxe-76ac38 {
		font-size: 27px;
	}
}

#brxe-831090 {
	align-items: center;
	margin-top: 60px;
	margin-bottom: 50px;
	padding-bottom: 100px;
}

@media (max-width: 478px) {
	#brxe-831090 {
		width: 90%;
	}
}

@media (max-width: 991px) {
	#brxe-bddbbe {
		width: 80%;
	}
}

@media (max-width: 767px) {
	#brxe-bddbbe {
		width: 90%;
	}
}

@media (max-width: 478px) {
	#brxe-bddbbe {
		align-items: center;
	}
}

#brxe-c694cc {
	border: 9px solid #333;
}

#brxe-c694cc:not(.tag), #brxe-c694cc img {
	object-fit: cover;
}

#brxe-70658a {
	border-color: #333;
}

#brxe-16440a {
	border: 9px solid #333;
}

#brxe-16440a:not(.tag), #brxe-16440a img {
	object-fit: cover;
}

#brxe-830788 {
	border: 9px solid #333;
}

#brxe-830788:not(.tag), #brxe-830788 img {
	object-fit: cover;
}

#brxe-69588a {
	display: grid;
	align-items: initial;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
	margin-bottom: 80px;
}

@media (max-width: 767px) {
	#brxe-69588a {
		display: flex;
		width: 90%;
		align-items: center;
	}
}

#brxe-f180ed {
	border: 10px solid #000;
}

#brxe-400a97 {
	align-items: flex-end;
}

#brxe-3dd486 {
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	#brxe-3dd486 {
		width: 90%;
		align-items: center;
	}
}

#brxe-f2cb77 {
	max-width: 1644px;
	width: 100%;
}

#brxe-1824f6 {
	font-size: 52px;
	color: #fff;
}

@media (max-width: 767px) {
	#brxe-1824f6 {
		font-size: 20px;
		margin-bottom: 20px;
	}
}

#brxe-e2c687 {
	align-self: center !important;
}

#brxe-5d00c8 {
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #fff;
	border-radius: 50px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
}

#brxe-132b51 {
	align-self: center !important;
	align-items: flex-end;
}

@media (max-width: 767px) {
	#brxe-132b51 {
		visibility: hidden;
		height: 0px;
	}
}

#brxe-003be4 {
	margin-bottom: 30px;
	display: grid;
	align-items: initial;
	grid-template-columns: 2fr 1fr;
}

@media (max-width: 767px) {
	#brxe-003be4 {
		grid-template-columns: 1fr;
		grid-gap: 0px;
		margin-bottom: 0;
	}
}

#brxe-d5550a {
	font-size: 22px;
	color: #fff;
}

#brxe-d5550a a {
	font-size: 22px;
	color: #fff;
	font-size: inherit;
}

@media (max-width: 767px) {
	#brxe-d5550a {
		font-size: 14px;
	}
	
	#brxe-d5550a a {
		font-size: 14px;
		font-size: inherit;
	}
}

#brxe-111bfc {
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	#brxe-111bfc {
		margin-bottom: 10px;
	}
}

#brxe-053873 {
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #fff;
	border-radius: 50px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	visibility: hidden;
}

@media (max-width: 767px) {
	#brxe-053873 {
		visibility: visible;
	}
}

#brxe-65dd01 {
	align-self: center !important;
	align-items: flex-end;
}

@media (max-width: 767px) {
	#brxe-65dd01 {
		align-items: flex-start;
		margin-bottom: 40px;
	}
}

#brxe-ffc8a8 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 767px) {
	#brxe-ffc8a8 {
		max-width: 300px;
		width: 100%;
	}
}

@media (max-width: 478px) {
	#brxe-ffc8a8 {
		max-width: 200px;
	}
}

#brxe-85300c {
	font-size: 24px;
}

#brxe-85300c {
	position: absolute;
	bottom: 35px;
	left: 16px;
	z-index: 2;
	color: #fff;
	font-weight: 700;
}

@media (max-width: 767px) {
	#brxe-85300c {
		margin-left: 30%;
	}
}

@media (max-width: 478px) {
	#brxe-85300c {
		margin-left: 10%;
		font-size: 18px;
	}
}

#brxe-a1d5e2 {
	position: relative;
	border-radius: 0;
	padding-top: 40px;
	padding-bottom: 40px;
}

:where(#brxe-a1d5e2 > *:not(figcaption)) {
	position: relative;
}

#brxe-a1d5e2::before {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 60%);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

#brxe-a1d5e2 {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

@media (max-width: 767px) {
	#brxe-a1d5e2 {
		align-items: center;
	}
}

#brxe-695530 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 767px) {
	#brxe-695530 {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 478px) {
	#brxe-695530 {
		max-width: 200px;
	}
}

#brxe-6e9ed9 {
	font-size: 24px;
}

#brxe-6e9ed9 {
	position: absolute;
	bottom: 35px;
	left: 16px;
	z-index: 2;
	color: #fff;
	font-weight: 700;
}

@media (max-width: 767px) {
	#brxe-6e9ed9 {
		margin-left: 30%;
	}
}

@media (max-width: 478px) {
	#brxe-6e9ed9 {
		font-size: 18px;
		margin-left: 10%;
	}
}

#brxe-35495a {
	position: relative;
	border-radius: 0;
	padding-top: 40px;
	padding-bottom: 40px;
}

:where(#brxe-35495a > *:not(figcaption)) {
	position: relative;
}

#brxe-35495a::before {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 60%);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

#brxe-35495a {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

@media (max-width: 767px) {
	#brxe-35495a {
		align-items: center;
	}
}

#brxe-265fde {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 767px) {
	#brxe-265fde {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 478px) {
	#brxe-265fde {
		max-width: 200px;
	}
}

#brxe-e447a1 {
	font-size: 24px;
}

#brxe-e447a1 {
	position: absolute;
	bottom: 35px;
	left: 16px;
	z-index: 2;
	color: #fff;
	font-weight: 700;
}

@media (max-width: 767px) {
	#brxe-e447a1 {
		margin-left: 30%;
	}
}

@media (max-width: 478px) {
	#brxe-e447a1 {
		margin-left: 10%;
		font-size: 18px;
	}
}

#brxe-ecc253 {
	position: relative;
	border-radius: 0;
	padding-top: 40px;
	padding-bottom: 40px;
}

:where(#brxe-ecc253 > *:not(figcaption)) {
	position: relative;
}

#brxe-ecc253::before {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 60%);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

#brxe-ecc253 {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

@media (max-width: 767px) {
	#brxe-ecc253 {
		align-items: center;
	}
}

#brxe-b00800 {
	display: grid;
	align-items: initial;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
	position: absolute;
}

@media (max-width: 991px) {
	#brxe-b00800 {
		width: 90%;
	}
}

@media (max-width: 767px) {
	#brxe-b00800 {
		grid-template-columns: 1fr;
		width: 90%;
		margin-top: 0;
	}
}

@media (max-width: 991px) {
	#brxe-56fe65 {
		align-items: center;
	}
}

@media (max-width: 767px) {
	#brxe-56fe65 {
		align-items: center;
	}
}

#brxe-733cc7 {
	margin-top: 50px;
	margin-bottom: 250px;
	max-width: 1080px;
	height: 300px;
}

@media (max-width: 991px) {
	#brxe-733cc7 {
		width: 95%;
	}
}

@media (max-width: 767px) {
	#brxe-733cc7 {
		height: 1020px;
		width: 90%;
	}
}

@media (max-width: 478px) {
	#brxe-733cc7 {
		height: 770px;
	}
}

#brxe-25fd79 {
	width: 100%;
	background-color: #e09900;
	padding-bottom: 40px;
	margin-bottom: 200px;
}

#brxe-6ac16f {
	border-top: 10px solid #000;
}

#brxe-e5a73c {
	max-width: 1080px;
	width: 100%;
}

@media (max-width: 767px) {
	#brxe-e5a73c {
		width: 90%;
	}
}

#brxe-b4b6c4 {
	height: auto;
	width: 153px;
}

@media (max-width: 767px) {
	#brxe-5c60f9 {
		visibility: hidden;
		height: 0px;
	}
}

#brxe-06af56 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #00463b;
}

@media (max-width: 478px) {
	#brxe-06af56 {
		margin-bottom: 10px;
	}
}

#brxe-a881e8 {
	font-size: 52px;
	line-height: 72px;
	color: #000;
}

@media (max-width: 478px) {
	#brxe-a881e8 {
		font-size: 20px;
		line-height: 25px;
	}
}

#brxe-6b6d56 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background-color: #00463b;
	padding-top: 15px;
	padding-right: 25px;
	padding-bottom: 15px;
	padding-left: 25px;
	margin-top: 20px;
	border-radius: 50px;
}

@media (max-width: 478px) {
	#brxe-6b6d56 {
		letter-spacing: 2px;
		font-size: 15px;
		font-weight: 600;
	}
}

#brxe-663af8 {
	justify-content: center;
}

#brxe-f4b403:not(.tag), #brxe-f4b403 img {
	object-fit: cover;
}

@media (max-width: 767px) {
	#brxe-c8031d {
		height: 0px;
		visibility: hidden;
	}
}

#brxe-33240a {
	display: grid;
	align-items: initial;
	grid-template-rows: 1fr;
	grid-template-columns: .3fr 1.2fr 1fr;
	margin-top: 60px;
	margin-bottom: 100px;
	width: 100%;
	max-width: 1080px;
}

@media (max-width: 991px) {
	#brxe-33240a {
		width: 100%;
	}
}

@media (max-width: 767px) {
	#brxe-33240a {
		width: 100%;
		display: flex;
	}
}

@media (max-width: 478px) {
	#brxe-33240a {
		grid-template-columns: .2fr .8fr 1fr;
		width: 100%;
		display: flex;
	}
}

#brxe-9c336b {
	max-width: 1200px;
	width: 100%;
}

@media (max-width: 991px) {
	#brxe-9c336b {
		width: 95%;
	}
}

@media (max-width: 767px) {
	#brxe-9c336b {
		width: 90%;
	}
}

@media (max-width: 991px) {
	#brxe-e3402b {
		width: 96%;
		align-items: center;
	}
}

#brxe-a1a6a7 {
	width: 100%;
	max-width: 1080px;
}

#brxe-91722a {
	align-items: center;
}

#brxe-c8cbac {
	background-color: #e09900;
	color: #000;
	font-size: 30px;
	line-height: 51px;
	font-family: "Order &ndash; January 5, 2026 @ 12:48 PM";
	border: 4px solid #000;
	border-radius: 3px;
}

@media (max-width: 767px) {
	#brxe-c8cbac {
		font-size: 21px;
	}
}

#brxe-486597 {
	align-items: center;
	margin-top: 50px;
}

#brxe-94cc55 {
	max-width: 1500px;
	width: 100%;
}

@media (max-width: 991px) {
	#brxe-94cc55 {
		width: 95%;
	}
}

@media (max-width: 767px) {
	#brxe-94cc55 {
		width: 90%;
	}
}

#brxe-65ff79 {
	font-size: 52px;
	color: #000;
}

@media (max-width: 767px) {
	#brxe-65ff79 {
		font-size: 20px;
	}
}

#brxe-f6e626 {
	margin-bottom: 50px;
	align-items: center;
}

#brxe-ab44b2 {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
}

#brxe-c66580 {
	font-size: 20px;
	margin-bottom: 10px;
}

#brxe-cdf0f5 {
	font-size: 14px;
	font-weight: 400;
	color: #000;
}

#brxe-cdf0f5 a {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	font-size: inherit;
}

#brxe-cdf0f5 a {
	color: #3dc3ea;
}

#brxe-0dc4f7 {
	border: 2px solid #000;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-b56b19 {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
}

#brxe-1b6f45 {
	margin-bottom: 10px;
	font-size: 20px;
}

#brxe-37ddf3 {
	font-size: 14px;
	font-weight: 400;
	color: #000;
}

#brxe-37ddf3 a {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	font-size: inherit;
}

#brxe-37ddf3 a {
	color: #3dc3ea;
}

#brxe-176f33 {
	border: 2px solid #000;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-9d89bc {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
}

#brxe-ce55e9 {
	margin-bottom: 10px;
	font-size: 20px;
}

#brxe-4f6635 {
	font-size: 14px;
	font-weight: 400;
	color: #000;
}

#brxe-4f6635 a {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	font-size: inherit;
}

#brxe-4f6635 a {
	color: #3dc3ea;
}

#brxe-3ae60f {
	border: 2px solid #000;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-6a41f6 {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
}

#brxe-5770d9 {
	margin-bottom: 11px;
	font-size: 20px;
}

#brxe-905927 {
	font-size: 14px;
	font-weight: 400;
	color: #000;
}

#brxe-905927 a {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	font-size: inherit;
}

#brxe-905927 a {
	color: #3dc3ea;
}

#brxe-4dfe42 {
	border: 2px solid #000;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-d637af {
	display: grid;
	align-items: initial;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	margin-bottom: 100px;
}

@media (max-width: 991px) {
	#brxe-d637af {
		width: 95%;
	}
}

@media (max-width: 767px) {
	#brxe-d637af {
		width: 90%;
	}
}

@media (max-width: 478px) {
	#brxe-d637af {
		display: flex;
	}
}

#brxe-18da20 {
	background-color: #f2f2f2;
	width: 100%;
	margin-top: 10px;
	padding-top: 50px;
}

#brxe-0e424e {
	font-size: 18px;
	text-align: center;
	font-style: italic;
	line-height: 22px;
	color: #000;
}

#brxe-0e424e a {
	font-size: 18px;
	text-align: center;
	font-style: italic;
	line-height: 22px;
	color: #000;
	font-size: inherit;
}

#brxe-b7cd74 {
	margin-top: 50px;
	margin-bottom: 100px;
}

#brxe-3915f1 {
	max-width: 760px;
	height: auto;
	width: 100%;
}

#brxe-9ff773 {
	align-items: center;
	margin-bottom: 100px;
}

#brxe-b48b9c {
	margin-bottom: 10px;
	width: 100%;
	max-width: 1080px;
}

@media (max-width: 991px) {
	#brxe-b48b9c {
		width: 95%;
	}
}

@media (max-width: 767px) {
	#brxe-b48b9c {
		width: 90%;
	}
}

#brxe-175545 {
	color: #fff;
	font-size: 52px;
}

@media (max-width: 767px) {
	#brxe-175545 {
		font-size: 20px;
	}
}

#brxe-f0648d {
	justify-content: center;
}

#brxe-7de711 .bricks-button {
	background-color: #000;
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.5px;
}

#brxe-7de711 .submit-button-wrapper {
	width: 100%;
}

#brxe-7de711 button[type=submit].bricks-button {
	border-radius: 50px;
}

#brxe-7de711 .form-group input {
	border: 2px solid #fff;
	border-radius: 50px;
	background-color: rgba(0, 0, 0, 0);
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 3px;
	padding-bottom: 3px;
}

#brxe-7de711 .flatpickr {
	border: 2px solid #fff;
	border-radius: 50px;
	background-color: rgba(0, 0, 0, 0);
	padding-top: 3px;
	padding-bottom: 3px;
}

#brxe-7de711 select {
	border: 2px solid #fff;
	border-radius: 50px;
	background-color: rgba(0, 0, 0, 0);
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 3px;
	padding-bottom: 3px;
}

#brxe-7de711 textarea {
	border: 2px solid #fff;
	border-radius: 50px;
	background-color: rgba(0, 0, 0, 0);
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 3px;
	padding-bottom: 3px;
}

#brxe-7de711 .bricks-button:not([type=submit]) {
	border: 2px solid #fff;
	border-radius: 50px;
}

#brxe-7de711 .choose-files {
	border: 2px solid #fff;
	border-radius: 50px;
}

#brxe-7de711 .form-group input::placeholder {
	color: #fff !important;
}

#brxe-7de711 .form-group button {
	padding-top: 16px !important;
	padding-bottom: 16px !important;
}

#brxe-7de711 .bricks-button .text {
	position: relative;
	display: inline-block;
}

#brxe-7de711 .bricks-button .text::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	transform: translate(-10px, -50%);
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
}

#brxe-7de711 .bricks-button:hover .text::after {
	transform: translate(0, -50%);
	opacity: 1;
}

#brxe-6e01d0 {
	display: grid;
	align-items: initial;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	grid-gap: 30px;
	background-color: #ff6847;
	padding-top: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	position: absolute;
	margin-top: -100px;
}

@media (max-width: 991px) {
	#brxe-6e01d0 {
		width: 90%;
	}
}

@media (max-width: 767px) {
	#brxe-6e01d0 {
		display: flex;
		padding-top: 20px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
	}
}

#brxe-980804 {
	width: 100%;
	align-items: center;
	max-width: 1080px;
}

@media (max-width: 991px) {
	#brxe-980804 {
		width: 90%;
	}
}

#brxe-74f773 {
	background-color: #00463b;
	width: 100%;
	min-height: 150px;
}

@media (max-width: 991px) {
	#brxe-74f773 {
		min-height: 180px;
	}
}
