
@layer bricks {
	.brxe-shortcode {
		width: 100%;
	}
}

@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 {
	: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;
	}
}

#brxe-dd687b {
	font-size: 60px;
	color: #fff;
	font-weight: 400;
	font-family: "Order &ndash; August 29, 2025 @ 11:05 AM";
}

#brxe-6aceb0 {
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	font-family: "Work Sans";
	margin-bottom: 20px;
}

#brxe-668262 {
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	font-family: "Work Sans";
	margin-bottom: 20px;
}

#brxe-519f9e {
	font-size: 16px;
	font-family: "Work Sans";
	color: #fff;
}

#brxe-519f9e a {
	font-size: 16px;
	font-family: "Work Sans";
	color: #fff;
	font-size: inherit;
}

#brxe-90d86d {
	align-items: center;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-right: 20px;
	padding-left: 20px;
}

#brxe-3175e9 {
	width: 60%;
}

#brxe-3175e9 {
	background-image: linear-gradient(78deg, #2b87da 17%, #29c4a9 100%);
}

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

#brxe-a45f03 {
	font-size: 14px;
	font-family: "Work Sans";
	color: #fff;
}

#brxe-a45f03 a {
	font-size: 14px;
	font-family: "Work Sans";
	color: #fff;
	font-size: inherit;
}

#brxe-6fd8d6 {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-right: 20px;
	padding-left: 20px;
}

#brxe-b4cbc0 {
	width: 40%;
	border: 4px solid #333;
}

#brxe-b4cbc0 {
	background-image: linear-gradient(180deg, #2b87da 0%, #29c4a9 100%);
}

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

#brxe-1403f3 {
	flex-direction: row;
	column-gap: 40px;
	row-gap: 40px;
	margin-top: 200px;
	margin-bottom: 200px;
	width: 98%;
	max-width: 1080px;
}

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

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

#brxe-7a4b44 {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

#brxe-7a4b44 .form-group[role="group"] {
	flex: 1 1 calc(50% - 15px);
	max-width: calc(50% - 7.5px);
	min-width: 300px;
}

#brxe-7a4b44 .form-group:has(textarea) {
	flex-basis: 100% !important;
	max-width: 100% !important;
	min-width: 100% !important;
}

#brxe-7a4b44 .form-group:has(textarea) {
	flex-basis: 100%;
	max-width: 100%;
}

#brxe-7a4b44 .form-group.submit-button-wrapper {
	flex-basis: 100%;
	display: flex;
	justify-content: flex-end;
}

#brxe-7a4b44 .form-group textarea {
	width: 100% !important;
}

#brxe-7a4b44 .form-group.submit-button-wrapper button {
	width: 150px;
}

#brxe-7a4b44 .form-group.submit-button-wrapper button {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	padding: .3em 1em;
	line-height: 1.7em !important;
	background-color: #3dc3ea;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	border: 2px solid;
	border-radius: 3px;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-property: all !important;
	transition-property: all !important;
	font-family: "Market Deco", Helvetica, Arial, Lucida, sans-serif;
	position: relative;
	overflow: hidden;
	padding-right: 40px;
}

#brxe-7a4b44 .form-group.submit-button-wrapper button:hover::before {
	opacity: 1;
	transform: translateX(0);
}

#brxe-7a4b44 .form-group.submit-button-wrapper button::before {
	font-family: "Ionicons", sans-serif;
	content: "";
	position: absolute;
	right: 15px;
	opacity: 0;
	transform: translateX(-10px);
	transition: all .3s ease;
	font-size: 1.2em;
}

#brxe-7a4b44 .form-group[role="group"] input {
	background-color: #eee;
	border-color: #eee;
	padding-top: 3px;
	padding-bottom: 3px;
}

#brxe-7a4b44 .form-group[role="group"] input::placeholder, #brxe-7a4b44 .form-group[role="group"] textarea::placeholder {
	color: #000;
}

@media (max-width: 992px) {
	#brxe-7a4b44 {
		display: block;
	}
	
	#brxe-7a4b44 .form-group[role="group"] {
		width: 100%;
		max-width: 100%;
		min-width: unset;
		margin-bottom: 15px;
	}
	
	#brxe-7a4b44 .form-group:has(textarea) {
		width: 100%;
	}
	
	#brxe-7a4b44 .form-group.submit-button-wrapper {
		width: 100%;
		justify-content: center;
	}
}

#brxe-e696c1 {
	width: 60%;
}

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

#brxe-e3ae34 {
	font-size: 16px;
	font-family: "Work Sans";
	color: #000;
	font-weight: 400;
	text-decoration: underline;
	margin-bottom: 10px;
}

#brxe-e3ae34 a {
	font-size: 16px;
	font-family: "Work Sans";
	color: #000;
	font-weight: 400;
	text-decoration: underline;
	font-size: inherit;
}

#brxe-c9310f {
	color: #000;
	font-weight: 600;
	font-size: 14px;
	font-family: "Work Sans";
}

#brxe-c9310f a {
	color: #000;
	font-weight: 600;
	font-size: 14px;
	font-family: "Work Sans";
	font-size: inherit;
}

#brxe-3bbf77 {
	background-color: #fff;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	width: 40%;
}

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

#brxe-c55611 {
	width: 98%;
	max-width: 1725px;
	flex-direction: row;
	column-gap: 70px;
	row-gap: 50px;
	padding-bottom: 100px;
}

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

#brxe-18fcae {
	width: 100%;
}

#brxe-18fcae {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMwMDAwMDAiPjxwYXRoIGQ9Ik0wIDQ3LjQ0TDE3MCAwbDYyNi40OCA5NC44OUwxMTEwIDg3LjExbDE3MC0zOS42N1YxNDBIMFY0Ny40NHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMCA5MC43MmwxNDAtMjguMjggMzE1LjUyIDI0LjE0TDc5Ni40OCA2NS44IDExNDAgMTA0Ljg5bDE0MC0xNC4xN1YxNDBIMFY5MC43MnoiLz48L2c+PC9zdmc+");
	background-size: 100% 100px;
	bottom: 0;
	height: 100px;
	z-index: 1;
	transform: scale(-1, 1);
}

#brxe-18fcae.nitro-lazy {
	background-image: none !important;
}

#brxe-3b230d {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#brxe-3b230d {
	background-image: linear-gradient(120deg, rgba(0, 37, 68, .7) 60%, rgba(0, 37, 68, .5) 60%), url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-3654d58/innoculatetdev.wpengine.com/wp-content/uploads/2020/09/itw-bg-2-scaled.jpeg") !important;
}

#brxe-3b230d.nitro-lazy {
	background-image: none !important;
}

#brxe-6366b8 {
	font-size: 20px;
	font-family: "Open Sans";
	font-weight: 700;
	min-width: 1080px;
	width: 98%;
}

#brxe-6366b8 a {
	font-size: 20px;
	font-family: "Open Sans";
	font-weight: 700;
	font-size: inherit;
}

#brxe-4d5d3d {
	margin-top: 40px;
	margin-bottom: 40px;
	width: 98%;
}

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

#brxe-af001e {
	background-color: #000;
}

#brxe-c9027e {
	margin-bottom: 20px;
	color: #fff;
	font-size: 30px;
	font-weight: 500;
	font-family: "Work Sans";
}

#brxe-a7b068 {
	margin-top: 100px;
	margin-bottom: 100px;
	max-width: 1080px;
	width: 98%;
}

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

#brxe-addc79 {
	background-color: #18252c;
	border-top: 10px solid #0af;
}
