
@layer bricks {
	.brxe-filter-search {
		position: relative;
		width: 100%;
	}
	
	.brxe-filter-search :where(input) {
		width: 100%;
	}
	
	.brxe-filter-search .icon {
		cursor: pointer;
		display: grid;
		height: 100%;
		margin-inline: 10px;
		place-items: center;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		transition: all .3s;
		visibility: hidden;
	}
	
	.brxe-filter-search .icon.brx-show {
		visibility: visible;
	}
}

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

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

@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-e52d0c {
	margin-top: 30px;
	margin-bottom: 40px;
}

.brxe-woocommerce-breadcrumbs a, .brxe-woocommerce-breadcrumbs .separator {
	color: #7a7a7a;
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.56px;
	text-transform: uppercase;
}

.brxe-woocommerce-breadcrumbs .navigation {
	color: #8bc66f;
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.56px;
	text-transform: uppercase;
}

.brxe-woocommerce-breadcrumbs .navigation a, .brxe-woocommerce-breadcrumbs .navigation .separator {
	color: #7a7a7a;
}

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

#brxe-58a1d9 {
	width: 100%;
	max-width: 278px;
}

#brxe-58a1d9 input {
	border-width: 1.5px;
	border-color: #7a7a7a;
	border-radius: 25.4px;
}

#brxe-58a1d9 .icon {
	color: #7a7a7a;
	font-size: 15px;
}

#brxe-58a1d9 input::placeholder {
	color: #7a7a7a;
	font-size: 12px;
	font-weight: 600;
	font-family: "Work Sans";
	text-transform: uppercase;
	letter-spacing: 1.56px;
	text-align: center;
}

#brxe-58a1d9 .ion-ios-search.icon {
	visibility: visible !important;
}

@media (max-width: 767px) {
	#brxe-58a1d9 input {
		visibility: hidden;
		height: 0px;
	}
	
	#brxe-58a1d9 .ion-ios-search.icon {
		visibility: hidden !important;
	}
}

#brxe-485c06 {
	width: 100%;
	max-width: 278px;
}

#brxe-485c06 input {
	border-width: 1.5px;
	border-color: #7a7a7a;
	border-radius: 25.4px;
}

#brxe-485c06 .icon {
	color: #7a7a7a;
	font-size: 15px;
}

#brxe-485c06 input::placeholder {
	color: #7a7a7a;
	font-size: 12px;
	font-weight: 600;
	font-family: "Work Sans";
	text-transform: uppercase;
	letter-spacing: 1.56px;
	text-align: center;
}

#brxe-485c06 .ion-ios-search.icon {
	visibility: visible !important;
}

@media (max-width: 767px) {
	#brxe-485c06 input {
		visibility: hidden;
		height: 0px;
	}
	
	#brxe-485c06 .ion-ios-search.icon {
		visibility: hidden !important;
	}
}

#brxe-b6bd8c {
	width: 100%;
	height: 100%;
	max-width: 278px;
	max-height: 44px;
	border: 1.5px solid #000;
	border-radius: 25.4px;
}

.brxe-filter-select {
	color: #000;
	text-align: center;
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.56px;
	text-transform: uppercase;
	padding-top: 15px;
	padding-bottom: 15px;
}

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

#brxe-868239 {
	width: 100%;
	height: 100%;
	max-width: 278px;
	max-height: 44px;
	border: 1.5px solid #000;
	border-radius: 25.4px;
}

.brxe-filter-select {
	color: #000;
	text-align: center;
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.56px;
	text-transform: uppercase;
	padding-top: 15px;
	padding-bottom: 15px;
}

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

#brxe-dc1ad6 {
	display: flex;
	width: 100%;
	font-size: 12px;
	font-family: "Work Sans";
	font-weight: 600;
	letter-spacing: 1.56px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
	height: 100%;
	justify-content: space-between;
}

@media (max-width: 767px) {
	#brxe-dc1ad6 {
		display: block;
		margin-bottom: 40px;
	}
}

.brxe-91f402 .brxe-5542c8.brxe-image {
	margin-bottom: 44px;
	max-width: 100%;
	border-radius: 23.5px;
}

.brxe-5542c8 {
	width: 100%;
	height: 376px;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 767px) {
	.brxe-91f402 .brxe-5542c8.brxe-image {
		max-width: 300px;
		max-height: 300px;
	}
}

@media (max-width: 478px) {
	.brxe-91f402 .brxe-5542c8.brxe-image {
		max-width: 220px;
		margin-bottom: 22px;
		max-height: 220px;
	}
	
	.brxe-91f402 .brxe-5542c8.brxe-image:not(.tag), .brxe-91f402 .brxe-5542c8.brxe-image img {
		object-fit: cover;
	}
}

.brxe-91f402 .brxe-4a8df0.brxe-heading {
	font-size: 20px;
	font-family: "Work Sans";
	line-height: 29.39px;
	text-align: center;
	font-weight: 500;
	margin-bottom: 12px;
}

@media (max-width: 767px) {
	.brxe-91f402 .brxe-4a8df0.brxe-heading {
		font-size: 12px;
		line-height: 12.9px;
		margin-bottom: 8px;
	}
}

.brxe-91f402 .brxe-b5a6bd.brxe-text-basic {
	font-size: 18px;
	font-family: "Work Sans";
	font-weight: 400;
	text-align: center;
	line-height: 25px;
	margin-bottom: 30px;
}

.brxe-b5a6bd {
	flex: 1;
}

@media (max-width: 767px) {
	.brxe-91f402 .brxe-b5a6bd.brxe-text-basic {
		font-size: 9.36px;
		line-height: 12.88px;
	}
}

@media (max-width: 478px) {
	.brxe-91f402 .brxe-b5a6bd.brxe-text-basic {
		margin-bottom: 15px;
	}
}

.brxe-91f402 .brxe-b90bf1.brxe-button {
	max-width: 369px;
	width: 100%;
	border-radius: 33.9px;
	text-transform: uppercase;
	font-size: 12px;
	color: #fff;
	font-family: "Work Sans";
	font-weight: 600;
	letter-spacing: 2.079px;
	text-align: center;
	background-image: linear-gradient(92deg, #ee2679 -2.07%, #ffe419 122.11%);
	height: 43.43px;
}

@media (max-width: 767px) {
	.brxe-91f402 .brxe-b90bf1.brxe-button {
		font-size: 12px;
		letter-spacing: .913px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

@media (max-width: 478px) {
	.brxe-91f402 .brxe-b90bf1.brxe-button {
		font-size: 8px;
	}
}

.brxe-91f402.brxe-div {
	width: 100%;
	max-width: 400px;
	padding-right: 10px;
	padding-bottom: 40px;
	padding-left: 10px;
	align-items: center;
	align-self: stretch !important;
}

.brxe-91f402 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (max-width: 767px) {
	.brxe-91f402.brxe-div {
		max-width: 100%;
		justify-content: space-between;
		align-items: center;
	}
}

@media (max-width: 478px) {
	.brxe-91f402.brxe-div {
		padding-right: 5px;
		padding-left: 5px;
	}
	
	@media (max-width: 401px) {
		.brxe-91f402 .brxe-5542c8.brxe-image {
			max-width: 200px !important;
			max-height: 200px !important;
		}
	}
}

#brxe-444278 {
	width: 100%;
	display: grid;
	align-items: initial;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	align-items: center;
	justify-items: center;
	align-content: center;
}

@media (max-width: 991px) {
	#brxe-444278 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	#brxe-444278 {
		grid-template-columns: 1fr 1fr;
	}
}

.brxe-9c6ea9 .brxe-310641.brxe-image {
	margin-bottom: 44px;
	max-width: 100%;
	border-radius: 23.5px;
}

.brxe-310641 {
	width: 100%;
	height: 376px;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 767px) {
	.brxe-9c6ea9 .brxe-310641.brxe-image {
		max-width: 300px;
		max-height: 300px;
	}
}

@media (max-width: 478px) {
	.brxe-9c6ea9 .brxe-310641.brxe-image {
		max-width: 200px;
		margin-bottom: 22px;
		max-height: 200px;
	}
	
	.brxe-9c6ea9 .brxe-310641.brxe-image:not(.tag), .brxe-9c6ea9 .brxe-310641.brxe-image img {
		object-fit: cover;
	}
}

.brxe-9c6ea9 .brxe-c98fc5.brxe-heading {
	font-size: 20px;
	font-family: "Work Sans";
	line-height: 29.39px;
	text-align: center;
	font-weight: 500;
	margin-bottom: 12px;
}

@media (max-width: 767px) {
	.brxe-9c6ea9 .brxe-c98fc5.brxe-heading {
		font-size: 12px;
		line-height: 12.9px;
		margin-bottom: 8px;
	}
}

.brxe-9c6ea9 .brxe-70244f.brxe-text-basic {
	font-size: 18px;
	font-family: "Work Sans";
	font-weight: 400;
	text-align: center;
	line-height: 25px;
	margin-bottom: 30px;
}

.brxe-70244f {
	flex: 1;
}

@media (max-width: 767px) {
	.brxe-9c6ea9 .brxe-70244f.brxe-text-basic {
		font-size: 9.36px;
		line-height: 12.88px;
	}
}

@media (max-width: 478px) {
	.brxe-9c6ea9 .brxe-70244f.brxe-text-basic {
		margin-bottom: 15px;
	}
}

.brxe-9c6ea9 .brxe-986a08.brxe-button {
	max-width: 369px;
	width: 100%;
	border-radius: 33.9px;
	text-transform: uppercase;
	font-size: 12px;
	color: #fff;
	font-family: "Work Sans";
	font-weight: 600;
	letter-spacing: 2.079px;
	text-align: center;
	background-image: linear-gradient(92deg, #ee2679 -2.07%, #ffe419 122.11%);
	height: 43.43px;
}

@media (max-width: 767px) {
	.brxe-9c6ea9 .brxe-986a08.brxe-button {
		font-size: 12px;
		letter-spacing: .913px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

@media (max-width: 478px) {
	.brxe-9c6ea9 .brxe-986a08.brxe-button {
		font-size: 8px;
	}
}

.brxe-9c6ea9.brxe-div {
	width: 100%;
	max-width: 400px;
	padding-right: 10px;
	padding-bottom: 40px;
	padding-left: 10px;
	align-items: center;
	align-self: stretch !important;
}

.brxe-9c6ea9 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (max-width: 767px) {
	.brxe-9c6ea9.brxe-div {
		max-width: 100%;
		justify-content: space-between;
		align-items: center;
	}
}

@media (max-width: 478px) {
	@media (max-width: 401px) {
		.brxe-91f402 .brxe-5542c8.brxe-image {
			max-width: 200px !important;
			max-height: 200px !important;
		}
	}
	
	.brxe-9c6ea9.brxe-div {
		padding-right: 5px;
		padding-left: 5px;
	}
}

#brxe-8a4e9c {
	width: 100%;
	display: grid;
	align-items: initial;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	align-items: center;
	justify-items: center;
	align-content: center;
}

@media (max-width: 991px) {
	#brxe-8a4e9c {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	#brxe-8a4e9c {
		grid-template-columns: 1fr 1fr;
	}
}

#brxe-5a430b {
	padding-right: 20px;
}

@media (max-width: 991px) {
	#brxe-5a430b {
		width: 100%;
		border-style: none;
		margin-right: auto;
		margin-left: auto;
		padding-right: 0;
	}
}

#brxe-e67b77 {
	flex-direction: row;
	max-width: 1300px;
	width: 98%;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 60px;
	margin-left: 0;
	display: block;
}

@media (max-width: 991px) {
	#brxe-e67b77 {
		flex-direction: column;
		margin-bottom: 100px;
		width: 95%;
	}
}

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

#brxe-79b2c9 {
	width: 100%;
}

#brxe-e4e5cc {
	max-width: 450px;
}

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

@media (max-width: 478px) {
	#brxe-e4e5cc {
		max-width: 262px;
	}
}

#brxe-8049e2 {
	align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	width: 50%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	min-height: 650px;
	justify-content: center;
}

@media (max-width: 991px) {
	#brxe-8049e2 {
		width: 100%;
		min-height: 500px;
	}
}

@media (max-width: 767px) {
	#brxe-8049e2 {
		width: 100%;
		min-height: 500px;
	}
}

@media (max-width: 478px) {
	#brxe-8049e2 {
		width: 100%;
		min-height: 500px;
	}
}

#brxe-856706 {
	color: #fff;
	font-weight: 700;
	font-family: "mestiza";
	font-size: 50px;
	line-height: 64px;
}

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

#brxe-88b82c button[type=submit].bricks-button {
	border-radius: 25.42px;
}

#brxe-88b82c .bricks-button {
	font-weight: 600;
	font-size: 12px;
	color: #fff;
}

#brxe-88b82c .form-group input {
	font-size: 14px;
	color: #ffe419;
	background-color: rgba(0, 0, 0, 0);
	border-top: 0 solid #ffe419;
	border-right: 0 solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 0 solid #ffe419;
}

#brxe-88b82c select {
	font-size: 14px;
	color: #ffe419;
	background-color: rgba(0, 0, 0, 0);
	border-top: 0 solid #ffe419;
	border-right: 0 solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 0 solid #ffe419;
}

#brxe-88b82c textarea {
	font-size: 14px;
	color: #ffe419;
	background-color: rgba(0, 0, 0, 0);
	border-top: 0 solid #ffe419;
	border-right: 0 solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 0 solid #ffe419;
}

#brxe-88b82c .flatpickr {
	background-color: rgba(0, 0, 0, 0);
	border-top: 0 solid #ffe419;
	border-right: 0 solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 0 solid #ffe419;
}

#brxe-88b82c .bricks-button:not([type=submit]) {
	border-top: 0 solid #ffe419;
	border-right: 0 solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 0 solid #ffe419;
}

#brxe-88b82c .choose-files {
	border-top: 0 solid #ffe419;
	border-right: 0 solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 0 solid #ffe419;
}

#brxe-88b82c .form-group:not(:last-child):not(.captcha) {
	padding-bottom: 40px;
}

.custom-contact-form button[type="submit"], .custom-contact-form input[type="submit"], .custom-contact-form .brxe-button {
	background: linear-gradient(90deg, #ee2679 0%, #ffe419 100%) !important;
	text-align: center;
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.56px;
	text-transform: uppercase;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	padding-left: 30px !important;
	padding-right: 30px !important;
	width: 230px;
}

@media (max-width: 991px) {
	.form-group.submit-button-wrapper {
		width: 100% !important;
	}
	
	.custom-contact-form button[type="submit"], .custom-contact-form input[type="submit"], .custom-contact-form .brxe-button {
		width: 100% !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

@media (max-width: 991px) {
	#brxe-7533a8 {
		padding-top: 50px;
		padding-right: 0;
		padding-bottom: 50px;
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	#brxe-7533a8 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media (max-width: 478px) {
	#brxe-7533a8 {
		padding-top: 50px;
		padding-right: 0;
		padding-bottom: 50px;
		padding-left: 0;
	}
}

#brxe-fe3beb {
	width: 50%;
	padding-right: 50px;
	padding-left: 50px;
}

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

@media (max-width: 767px) {
	#brxe-fe3beb {
		width: 100%;
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media (max-width: 478px) {
	#brxe-fe3beb {
		width: 100%;
		padding-right: 20px;
		padding-left: 20px;
	}
}

#brxe-2b7272 {
	flex-direction: row;
	background-image: linear-gradient(238deg, #ea1d7d, #2a7b92 78.66%);
}

@media (max-width: 991px) {
	#brxe-2b7272 {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	#brxe-2b7272 {
		flex-direction: column;
	}
}

@media (max-width: 478px) {
	#brxe-2b7272 {
		flex-direction: column;
	}
}
