
@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-text-link {
		gap: 5px;
	}
	
	.brxe-text-link, .brxe-text-link span {
		align-items: center;
		display: inline-flex;
	}
	
	.brxe-text-link span {
		justify-content: center;
	}
}

@layer bricks {
	.brxe-slider-nested {
		min-width: 0;
		width: 100%;
	}
	
	.brxe-slider-nested .splide__slide {
		align-items: center;
		display: flex;
		justify-content: center;
		position: relative;
	}
	
	.brxe-slider-nested .splide__arrows:not(.custom) .splide__arrow--prev {
		transform: translateY(-50%) scaleX(-1);
	}
	
	.brxe-slider-nested .splide__arrows:not(.custom).splide__arrows--ttb .splide__arrow--prev {
		transform: translateX(-50%) scaleX(-1);
	}
	
	.brxe-slider-nested .splide__arrows svg {
		min-height: 0;
		min-width: 0;
	}
}

@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-slider) {
		list-style-type: none;
		margin: 0;
		min-width: 0;
		padding: 0;
		position: relative;
		width: 100%;
	}
	
	:where(.brxe-slider) .title {
		color: #fff;
		font-size: 3em;
		margin: 0;
	}
	
	:where(.brxe-slider) .content {
		color: #fff;
		font-size: 1.6em;
	}
	
	:where(.brxe-slider) .content + .bricks-button {
		margin-top: 1em;
	}
	
	:where(.brxe-slider) .bricks-button {
		display: inline-flex;
	}
	
	:where(.brxe-slider) .bricks-swiper-container {
		height: inherit;
		max-height: inherit;
		max-width: inherit;
		min-height: inherit;
		min-width: inherit;
		width: inherit;
	}
	
	:where(.brxe-slider) .swiper-slide {
		align-items: center;
		display: flex;
		justify-content: center;
		min-height: 50vh;
		position: relative;
		text-align: center;
	}
	
	:where(.brxe-slider) .slider-content {
		padding: 30px 60px;
		position: relative;
		z-index: 2;
	}
	
	:where(.brxe-slider) .image {
		background-position: 50%;
		background-size: cover;
		bottom: 0;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
	}
	
	:where(.brxe-slider) .image:after {
		bottom: 0;
		content: "";
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		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);
		}
	}
	
	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 {
	.brxe-code {
		width: 100%;
	}
}

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

#brxe-060360 {
	color: #fff;
	font-size: 65px;
	text-align: center;
	font-family: "mestiza";
	font-weight: 700;
}

@media (max-width: 991px) {
	#brxe-060360 {
		font-size: 35px;
	}
}

@media (max-width: 767px) {
	#brxe-060360 {
		font-size: 35px;
		line-height: 37.94px;
		letter-spacing: 0px;
		margin-bottom: 24px;
	}
}

#brxe-3fc80c {
	color: #fff;
	font-size: 20px;
	font-family: "Work Sans";
	text-align: center;
	font-weight: 400;
	line-height: 27px;
	max-width: 495px;
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	#brxe-3fc80c {
		font-size: 18px;
		line-height: 100%;
	}
}

#brxe-43e6f0 {
	margin-top: 30px;
	border-top: 1px solid #ffe419;
	border-right: 1.5px solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 1.5px solid #ffe419;
	border-radius: 25.42px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: #f5f5f5;
	font-size: 12px;
	letter-spacing: 13%;
	background-color: rgba(0, 0, 0, 0);
	padding-top: 10px;
	padding-right: 60px;
	padding-bottom: 10px;
	padding-left: 60px;
	min-width: 221.2px;
	min-height: 43.43px;
}

@media (max-width: 767px) {
	#brxe-43e6f0 {
		min-width: 92%;
	}
}

#brxe-6a82ad {
	align-self: center !important;
	margin-top: 240px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	align-items: center;
	width: 975px;
}

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

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

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

#brxe-c02293 {
	width: 100%;
	margin-top: 100px;
	padding-top: 30px;
	flex-direction: row;
	border-top: 2px solid #ffe419;
}

@media (max-width: 767px) {
	#brxe-c02293 {
		margin-top: 50px;
		padding-top: 20px;
	}
}

@media (max-width: 478px) {
	#brxe-c02293 {
		margin-top: 70px;
		padding-top: 20px;
	}
}

#brxe-aa8eac {
	background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-3654d58/inoculatetheworld.com/wp-content/uploads/2026/08/mushroom_primary_bg.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 760px;
}

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

@media (max-width: 991px) {
	#brxe-aa8eac {
		min-height: 620px;
	}
}

@media (max-width: 767px) {
	#brxe-aa8eac {
		min-height: 600px;
	}
}

@media (max-width: 478px) {
	#brxe-aa8eac {
		min-height: 670px;
		background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-3654d58/inoculatetheworld.com/wp-content/uploads/2026/08/mushroom_primary_small_bg.webp");
		background-size: cover;
	}
	
	#brxe-aa8eac.nitro-lazy {
		background-image: none !important;
	}
}

#brxe-6279fb {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #333;
	text-align: center;
	margin-bottom: 40px;
}

@media (max-width: 478px) {
	#brxe-4b9629 {
		width: 100px;
	}
}

@media (max-width: 478px) {
	#brxe-6c8225 {
		width: 100px;
	}
}

#brxe-c66411 {
	max-width: 78px;
}

@media (max-width: 478px) {
	#brxe-c66411 {
		width: 100px;
	}
}

@media (max-width: 478px) {
	#brxe-e2aaa0 {
		width: 100px;
	}
}

@media (max-width: 478px) {
	#brxe-a212fe {
		width: 100px;
	}
}

@media (max-width: 478px) {
	#brxe-f644b6 {
		width: 100px;
	}
}

#brxe-66296d {
	flex-direction: row;
	flex-wrap: wrap;
	align-self: center !important;
	column-gap: 60px;
	width: 100%;
	justify-content: space-around;
	padding-right: 50px;
	padding-left: 50px;
	align-items: center;
}

@media (max-width: 767px) {
	#brxe-66296d {
		padding-right: 0px;
		padding-left: 0px;
		row-gap: 30px;
	}
}

@media (max-width: 478px) {
	#brxe-66296d {
		padding-right: 0px;
		padding-left: 0px;
	}
}

#brxe-f50f08 {
	width: 100%;
	align-items: center;
}

#brxe-3e80e5 {
	padding-top: 60px;
	padding-right: 20px;
	padding-bottom: 60px;
	padding-left: 20px;
}

#brxe-a0cf3f {
	background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-3654d58/inoculatetheworld.com/wp-content/uploads/2026/08/ganoderma_multipileum_itw_7_small.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 50%;
	min-height: 800px;
}

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

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

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

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

#brxe-2d8497 {
	color: #fff;
	font-weight: 700;
	font-family: "mestiza";
	font-size: 35px;
}

@media (max-width: 767px) {
	#brxe-2d8497 {
		font-size: 33px;
	}
}

#brxe-839866 {
	margin-top: 100px;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	#brxe-839866 {
		align-items: center;
		margin-top: 61px;
	}
}

#brxe-25a492 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	#brxe-25a492 {
		text-align: center;
		margin-bottom: 40px;
	}
}

#brxe-fc1e7b {
	color: #fff;
	font-size: 19.8px;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 10px;
}

#brxe-fbcfa8 {
	color: #fff;
	font-size: 14px;
	margin-top: 0;
}

@media (max-width: 767px) {
	#brxe-1f061e {
		width: 80%;
	}
}

@media (max-width: 478px) {
	#brxe-1f061e {
		width: 75%;
	}
	
	@media (max-width: 405px) {
		#brxe-1f061e {
			width: 72%;
		}
	}
	
	@media (max-width: 367px) {
		#brxe-1f061e {
			width: 70%;
		}
	}
	
	@media (max-width: 340px) {
		#brxe-1f061e {
			width: 66%;
		}
	}
}

#brxe-58a33a {
	flex-direction: row;
	column-gap: 20px;
	margin-bottom: 50px;
	border-bottom: 1.58px solid #ffe419;
	padding-bottom: 40px;
}

@media (max-width: 767px) {
	#brxe-58a33a {
		flex-direction: row;
	}
}

#brxe-4b46e4 {
	color: #fff;
	font-size: 19.8px;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 10px;
}

#brxe-22bee8 {
	color: #fff;
	font-size: 14px;
	margin-top: 0;
}

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

@media (max-width: 478px) {
	#brxe-3fc04d {
		width: 75%;
	}
	
	@media (max-width: 405px) {
		#brxe-3fc04d {
			width: 72%;
		}
	}
	
	@media (max-width: 367px) {
		#brxe-3fc04d {
			width: 70%;
		}
	}
	
	@media (max-width: 340px) {
		#brxe-3fc04d {
			width: 66%;
		}
	}
}

#brxe-3eb405 {
	flex-direction: row;
	column-gap: 20px;
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1.58px solid #ffe419;
}

#brxe-fbbc80 {
	color: #fff;
	font-size: 19.8px;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 10px;
}

#brxe-e18a31 {
	color: #fff;
	font-size: 14px;
	margin-top: 0;
}

@media (max-width: 767px) {
	#brxe-55121a {
		width: 80%;
	}
}

@media (max-width: 478px) {
	#brxe-55121a {
		width: 75%;
	}
	
	@media (max-width: 405px) {
		#brxe-55121a {
			width: 72%;
		}
	}
	
	@media (max-width: 367px) {
		#brxe-55121a {
			width: 70%;
		}
	}
	
	@media (max-width: 340px) {
		#brxe-55121a {
			width: 66%;
		}
	}
}

#brxe-8b4bf4 {
	flex-direction: row;
	column-gap: 20px;
	margin-bottom: 50px;
}

#brxe-503105 {
	padding-right: 60px;
	padding-left: 60px;
}

@media (max-width: 478px) {
	#brxe-503105 {
		padding-right: 0;
		padding-left: 0;
	}
}

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

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

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

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

#brxe-46abd6 {
	flex-direction: row;
	background-color: #095065;
}

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

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

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

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

@media (max-width: 767px) {
	#brxe-d753dc {
		font-size: 33px;
		line-height: 40px;
	}
}

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

#brxe-864008 .swiper-slide[data-brx-swiper-index="0"] .bricks-button {
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #ffe419;
	border-radius: 50px;
	color: #fff;
	font-size: 12px;
	font-family: "Work Sans";
	letter-spacing: 13%;
	width: 311.31px;
}

#brxe-864008 .swiper-slide[data-brx-swiper-index="1"] .bricks-button {
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #ffe419;
	border-radius: 50px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 13%;
	font-family: "Work Sans";
	width: 311.31px;
}

#brxe-864008 .swiper-slide[data-brx-swiper-index="2"] .bricks-button {
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #ffe419;
	border-radius: 50px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 13%;
	font-family: "Work Sans";
	width: 311.31px;
}

#brxe-864008 .swiper-slide[data-brx-swiper-index="3"] .bricks-button {
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #ffe419;
	border-radius: 50px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 13%;
	width: 311.31px;
}

#brxe-864008 .swiper-slide[data-brx-swiper-index="4"] .bricks-button {
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid #ffe419;
	border-radius: 50px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 13%;
	width: 311.31px;
}

#brxe-864008 .bricks-swiper-button-next {
	right: 45%;
	top: 120%;
}

#brxe-864008 {
	background-color: #70092b;
}

#brxe-864008 .slider-content {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-864008 .content {
	font-size: 19px;
}

#brxe-864008 .title {
	font-size: 30px;
}

#brxe-864008 .slider-content .title {
	margin-bottom: 10px;
}

#brxe-864008 .swiper-slide {
	min-height: 359.31px;
	align-items: center;
	justify-content: center;
}

#brxe-864008 .bricks-swiper-button-prev {
	top: 120%;
	left: 45%;
}

#brxe-864008 .slider-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 30px;
}

#brxe-864008 .slider-content .content {
	padding-bottom: 30px;
}

#brxe-864008 h6 {
	font-family: "mestiza", sans-serif;
}

@media (max-width: 991px) {
	#brxe-864008 {
		padding-right: 20px;
		padding-left: 20px;
	}
}

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

@media (max-width: 478px) {
	#brxe-864008 {
		padding-right: 20px;
		padding-left: 20px;
	}
	
	#brxe-864008 .bricks-swiper-button-prev {
		left: 40%;
	}
	
	#brxe-864008 .bricks-swiper-button-next {
		right: 40%;
	}
}

#brxe-8fc458 {
	width: 1222px;
}

#brxe-a6183a {
	padding-top: 80px;
	padding-bottom: 200px;
	background-color: #70092b;
}

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

@media (max-width: 767px) {
	#brxe-881dd9 {
		font-size: 33px;
		line-height: 40px;
	}
}

#brxe-28797e {
	align-items: center;
}

#brxe-aeac5d {
	width: 277px;
	height: 155px;
}

#brxe-8dbd79 {
	color: #f5f5f5;
	font-size: 30px;
	text-align: center;
	font-family: "mestiza";
	font-weight: 700;
	line-height: 64px;
	margin-top: 40px;
}

#brxe-58d229 {
	text-align: center;
	color: #f5f5f5;
	font-size: 19px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-f20d06 {
	width: 243.57px;
	background-image: linear-gradient(135deg, #ee2679, #ffe419);
	color: #fff;
	font-size: 12px;
	letter-spacing: 13%;
	font-family: "Work Sans";
	padding-top: 8.4px;
	padding-right: 15.6px;
	padding-bottom: 8.4px;
	padding-left: 15.6px;
	border-radius: 50px;
	min-height: 43.43px;
}

#brxe-7019f7 {
	height: 155px;
	width: 277px;
}

#brxe-a2c5a0 {
	color: #f5f5f5;
	font-size: 30px;
	text-align: center;
	font-family: "mestiza";
	font-weight: 700;
	line-height: 64px;
	margin-top: 40px;
}

#brxe-792ae1 {
	text-align: center;
	color: #f5f5f5;
	font-size: 19px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-117b0a {
	width: 243.57px;
	background-image: linear-gradient(135deg, #ee2679, #ffe419);
	color: #fff;
	font-size: 12px;
	font-family: "Work Sans";
	letter-spacing: 13%;
	padding-top: 8.4px;
	padding-right: 15.6px;
	padding-bottom: 8.4px;
	padding-left: 15.6px;
	border-radius: 50px;
	min-height: 43.43px;
}

#brxe-a1ed7f {
	height: 155px;
	width: 277px;
}

#brxe-0f0550 {
	color: #f5f5f5;
	font-size: 30px;
	text-align: center;
	font-family: "mestiza";
	font-weight: 700;
	line-height: 64px;
	margin-top: 40px;
}

#brxe-0653c6 {
	text-align: center;
	color: #f5f5f5;
	font-size: 19px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#brxe-e300d3 {
	width: 243.57px;
	background-image: linear-gradient(135deg, #ee2679, #ffe419);
	color: #fff;
	font-size: 12px;
	font-family: "Work Sans";
	letter-spacing: 13%;
	padding-top: 8.4px;
	padding-right: 15.6px;
	padding-bottom: 8.4px;
	padding-left: 15.6px;
	border-radius: 50px;
	min-height: 43.43px;
}

#brxe-0e9e99 .splide__arrow--prev {
	top: 115%;
	left: 42%;
}

#brxe-0e9e99 .splide__arrow--next {
	top: 115%;
	right: 42%;
}

#brxe-0e9e99 .splide__slide {
	align-items: center;
	justify-content: flex-start;
}

#brxe-0e9e99 {
	margin-top: 20px;
}

#brxe-0e9e99 .splide__slide {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#brxe-0e9e99 .splide__slide > .brxe-button {
	position: static !important;
	top: auto !important;
	transform: none !important;
	margin-top: auto;
	margin-inline: auto;
}

@media (max-width: 991px) {
	#brxe-0e9e99 .splide__arrow--prev {
		left: 40%;
	}
	
	#brxe-0e9e99 .splide__arrow--next {
		right: 40%;
	}
}

@media (max-width: 767px) {
	#brxe-0e9e99 .splide__arrow--prev {
		left: 38.5%;
		top: 110%;
	}
	
	#brxe-0e9e99 .splide__arrow--next {
		right: 38.5%;
		top: 110%;
	}
}

@media (max-width: 478px) {
	#brxe-0e9e99 .splide__arrow--prev {
		left: 28%;
	}
	
	#brxe-0e9e99 .splide__arrow--next {
		right: 28%;
	}
}

#brxe-4fca1a {
	color: #fff;
	font-size: 16px;
	font-family: "Work Sans";
	text-decoration: underline;
}

#brxe-3f219f {
	flex-direction: column;
	align-items: center;
	margin-top: 120px;
}

@media (max-width: 767px) {
	#brxe-3f219f {
		visibility: hidden;
		margin-top: 60px;
	}
}

#brxe-61fb42 {
	width: 1222px;
}

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

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

@media (max-width: 478px) {
	#brxe-61fb42 {
		width: 100%;
	}
}

#brxe-6c38c1 {
	padding-top: 100px;
	padding-bottom: 60px;
	background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-3654d58/inoculatetheworld.com/wp-content/uploads/2026/08/swirls_132112556XCADSAs.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#brxe-6c38c1.nitro-lazy {
	background-image: none !important;
}

@media (max-width: 767px) {
	#brxe-6c38c1 {
		padding-bottom: 40px;
	}
}

#brxe-0760fa {
	line-height: 64px;
	font-size: 50px;
	font-family: "mestiza";
	font-weight: 700;
	padding-bottom: 40px;
}

@media (max-width: 767px) {
	#brxe-0760fa {
		text-align: center;
		font-size: 33px;
		line-height: 40px;
	}
}

@media (max-width: 478px) {
	#brxe-0760fa {
		text-align: center;
	}
}

#brxe-25fd26 {
	line-height: 23.8px;
	font-weight: 400;
	font-size: 18px;
}

#brxe-eea206 {
	align-items: center;
	margin-bottom: 40px;
}

#brxe-119eeb {
	margin-right: 4px;
	height: 22.24px;
	width: 22.24px;
}

@media (max-width: 478px) {
	#brxe-119eeb {
		width: 20px;
		height: 20px;
	}
}

#brxe-6446ea {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-6446ea {
		width: 20px;
		height: 20px;
	}
}

#brxe-4cbbab {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-4cbbab {
		width: 20px;
		height: 20px;
	}
}

#brxe-f7e25f {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-f7e25f {
		width: 20px;
		height: 20px;
	}
}

#brxe-3918c0 {
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-3918c0 {
		width: 20px;
		height: 20px;
	}
}

#brxe-caae3a {
	align-items: center;
	display: block;
	text-align: center;
}

#brxe-45d4e0 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 10px;
}

#brxe-d2f974 {
	text-align: center;
	font-size: 14px;
	line-height: 23.8px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

[data-id="brxe-50982d"].splide__slide {
	background-image: linear-gradient(#9c0b3b, #f4774a);
	max-height: 380px;
	color: #fff;
	flex-direction: column;
}

#brxe-81d6e2 {
	margin-right: 4px;
	height: 22.24px;
	width: 22.24px;
}

@media (max-width: 478px) {
	#brxe-81d6e2 {
		width: 20px;
		height: 20px;
	}
}

#brxe-72e858 {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-72e858 {
		width: 20px;
		height: 20px;
	}
}

#brxe-b09dc0 {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-b09dc0 {
		width: 20px;
		height: 20px;
	}
}

#brxe-b222fe {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-b222fe {
		width: 20px;
		height: 20px;
	}
}

#brxe-d85daa {
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-d85daa {
		width: 20px;
		height: 20px;
	}
}

#brxe-ad08a9 {
	align-items: center;
	display: block;
	text-align: center;
}

#brxe-4aadd2 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 10px;
}

#brxe-59ff93 {
	text-align: center;
	font-size: 14px;
	line-height: 23.8px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

[data-id="brxe-4d31f4"].splide__slide {
	max-height: 380px;
	background-image: linear-gradient(#9c0b3b, #f4774a);
	color: #fff;
}

#brxe-259c46 {
	margin-right: 4px;
	height: 22.24px;
	width: 22.24px;
}

@media (max-width: 478px) {
	#brxe-259c46 {
		width: 20px;
		height: 20px;
	}
}

#brxe-aea25a {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-aea25a {
		width: 20px;
		height: 20px;
	}
}

#brxe-5f97a2 {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-5f97a2 {
		width: 20px;
		height: 20px;
	}
}

#brxe-4ee4ce {
	margin-right: 4px;
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-4ee4ce {
		width: 20px;
		height: 20px;
	}
}

#brxe-32cc03 {
	width: 22.24px;
	height: 22.24px;
}

@media (max-width: 478px) {
	#brxe-32cc03 {
		width: 20px;
		height: 20px;
	}
}

#brxe-6737d5 {
	align-items: center;
	display: block;
	text-align: center;
}

#brxe-d2f606 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 10px;
}

#brxe-cec344 {
	text-align: center;
	font-size: 14px;
	line-height: 23.8px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

[data-id="brxe-f0f444"].splide__slide {
	max-height: 380px;
	background-image: linear-gradient(#9c0b3b, #f4774a);
	color: #fff;
}

#brxe-f76939 .splide__arrow--prev {
	top: 110%;
	left: 42%;
}

#brxe-f76939 .splide__arrow--next {
	top: 110%;
	right: 42%;
}

#brxe-f76939 {
	max-height: 450px;
}

#brxe-f76939 .splide__slide {
	border-radius: 30px;
	padding-top: 50px;
	padding-right: 12px;
	padding-left: 12px;
	align-items: center;
	justify-content: flex-start;
}

@media (max-width: 991px) {
	#brxe-f76939 .splide__arrow--prev {
		left: 40%;
	}
	
	#brxe-f76939 .splide__arrow--next {
		right: 40%;
	}
}

@media (max-width: 767px) {
	#brxe-f76939 .splide__arrow--prev {
		left: 38.5%;
	}
	
	#brxe-f76939 .splide__arrow--next {
		right: 38.5%;
	}
}

@media (max-width: 478px) {
	#brxe-f76939 .splide__arrow--prev {
		left: 27%;
	}
	
	#brxe-f76939 .splide__arrow--next {
		right: 27%;
	}
}

#brxe-a767eb {
	width: 1222px;
}

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

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

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

#brxe-c24bdb {
	padding-top: 100px;
	padding-bottom: 100px;
}

#brxe-f95ce0 {
	color: #fff;
	line-height: 64px;
	font-size: 40px;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	#brxe-f95ce0 {
		line-height: 64px;
		font-size: 33px;
	}
}

#brxe-4415bb {
	align-items: center;
}

#brxe-e92e6b {
	height: auto;
	border-radius: 20px;
}

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

@media (max-width: 478px) {
	#brxe-e92e6b:not(.tag), #brxe-e92e6b img {
		object-fit: cover;
	}
}

#brxe-9c09c8 {
	color: #f5f5f5;
	font-size: 30px;
	text-align: center;
	font-family: "mestiza";
	font-weight: 700;
	margin-top: 20px;
}

#brxe-cc398f {
	text-align: center;
	color: #f5f5f5;
	font-size: 19px;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 20px;
}

#brxe-e003f5 {
	width: 242.6px;
	background-image: linear-gradient(135deg, #ee2679, #ffe419);
	color: #fff;
	font-size: 12px;
	font-family: "Work Sans";
	letter-spacing: 13%;
	padding-top: 8.4px;
	padding-right: 15.6px;
	padding-bottom: 8.4px;
	padding-left: 15.6px;
	border-radius: 50px;
	min-height: 43.43px;
}

#brxe-3e3247 {
	align-items: center;
}

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

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

[data-id="brxe-d1a037"].splide__slide {
	display: block;
}

#brxe-340240 {
	height: auto;
	border-radius: 20px;
}

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

@media (max-width: 478px) {
	#brxe-340240:not(.tag), #brxe-340240 img {
		object-fit: cover;
	}
}

#brxe-cbafcc {
	color: #f5f5f5;
	font-size: 30px;
	text-align: center;
	font-family: "mestiza";
	font-weight: 700;
	margin-top: 20px;
}

#brxe-97e77c {
	text-align: center;
	color: #f5f5f5;
	font-size: 19px;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 20px;
}

#brxe-bec09c {
	width: 242.6px;
	background-image: linear-gradient(135deg, #ee2679, #ffe419);
	color: #fff;
	font-size: 12px;
	letter-spacing: 13%;
	font-family: "Work Sans";
	padding-top: 8.4px;
	padding-right: 15.6px;
	padding-bottom: 8.4px;
	padding-left: 15.6px;
	border-radius: 50px;
	min-height: 43.43px;
}

#brxe-148c19 {
	align-items: center;
}

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

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

[data-id="brxe-5ad7e3"].splide__slide {
	display: block;
}

#brxe-1e6ab8 {
	height: auto;
	border-radius: 20px;
}

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

@media (max-width: 478px) {
	#brxe-1e6ab8:not(.tag), #brxe-1e6ab8 img {
		object-fit: cover;
	}
}

#brxe-28c712 {
	color: #f5f5f5;
	font-size: 30px;
	text-align: center;
	font-family: "mestiza";
	font-weight: 700;
	margin-top: 20px;
}

#brxe-844742 {
	text-align: center;
	color: #f5f5f5;
	font-size: 19px;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 20px;
}

#brxe-24d2ee {
	width: 242.6px;
	background-image: linear-gradient(135deg, #ee2679, #ffe419);
	color: #fff;
	font-size: 12px;
	letter-spacing: 13%;
	font-family: "Work Sans";
	padding-top: 8.4px;
	padding-right: 15.6px;
	padding-bottom: 8.4px;
	padding-left: 15.6px;
	border-radius: 50px;
	min-height: 43.43px;
}

#brxe-237ed2 {
	align-items: center;
}

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

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

[data-id="brxe-96525f"].splide__slide {
	display: block;
}

#brxe-cac490 .splide__arrow--prev {
	top: 110%;
	left: 42%;
}

#brxe-cac490 .splide__arrow--next {
	top: 110%;
	right: 42%;
}

#brxe-cac490 .splide__arrows.splide__arrows--ltr {
	display: none !important;
}

@media (max-width: 991px) {
	#brxe-cac490 .splide__arrow--prev {
		left: 40%;
	}
	
	#brxe-cac490 .splide__arrow--next {
		right: 40%;
	}
	
	#brxe-cac490 .splide__arrows.splide__arrows--ltr {
		display: inline !important;
	}
}

@media (max-width: 767px) {
	#brxe-cac490 .splide__arrow--next {
		right: 38.5%;
		top: 112%;
	}
	
	#brxe-cac490 .splide__arrow--prev {
		left: 38.5%;
		top: 112%;
	}
}

@media (max-width: 478px) {
	#brxe-cac490 .splide__arrow--prev {
		left: 28%;
	}
	
	#brxe-cac490 .splide__arrow--next {
		right: 28%;
	}
}

#brxe-3ec810 {
	color: #fff;
	font-size: 16px;
	font-family: "Work Sans";
	text-decoration: underline;
}

@media (max-width: 767px) {
	#brxe-3ec810 {
		visibility: hidden;
	}
}

#brxe-88cc58 {
	flex-direction: column;
	align-items: center;
	margin-top: 100px;
}

@media (max-width: 991px) {
	#brxe-88cc58 {
		margin-top: 120px;
	}
}

#brxe-ee636c {
	width: 1222px;
}

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

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

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

#brxe-233b52 {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #70092b;
}

@media (max-width: 767px) {
	#brxe-233b52 {
		padding-bottom: 0;
	}
}

#brxe-eaedf6 {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 23.8px;
	margin-bottom: 20px;
}

#brxe-a9e541 {
	color: #fff;
	line-height: 40px;
	font-size: 40px;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	#brxe-a9e541 {
		line-height: 40px;
	}
}

@media (max-width: 767px) {
	#brxe-a9e541 {
		font-size: 35px;
		line-height: 40px;
	}
}

#brxe-9901ce {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 23.8px;
	text-align: center;
	margin-bottom: 20px;
}

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

@media (max-width: 767px) {
	#brxe-681883 {
		margin-top: 30px;
	}
}

#brxe-0d00e7 {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}

#brxe-b1bb4c {
	align-items: center;
	margin-bottom: 61.5px;
}

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

#brxe-44a647 {
	width: 200px;
}

@media (max-width: 478px) {
	#brxe-44a647 {
		width: 150px;
	}
}

#brxe-3631dc {
	font-size: 20px;
	color: #fff;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 5px;
}

#brxe-ea12ef {
	font-size: 11.37px;
	color: #fff;
	letter-spacing: 13%;
}

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

#brxe-497651 {
	align-items: center;
}

#brxe-43f68c {
	align-items: center;
}

@media (max-width: 991px) {
	#brxe-43f68c {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}

#brxe-87c2e9 {
	width: 200px;
}

@media (max-width: 478px) {
	#brxe-87c2e9 {
		width: 150px;
	}
}

#brxe-5f3511 {
	font-size: 20px;
	color: #fff;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 5px;
}

#brxe-748d8f {
	font-size: 11.37px;
	color: #fff;
	letter-spacing: 13%;
}

@media (max-width: 478px) {
	#brxe-748d8f {
		text-align: center;
	}
}

#brxe-c7c591 {
	align-items: center;
}

#brxe-189798 {
	align-items: center;
}

@media (max-width: 991px) {
	#brxe-189798 {
		grid-column: 2/3;
		grid-row: 1/2;
	}
}

#brxe-d71f91 {
	width: 200px;
}

@media (max-width: 478px) {
	#brxe-d71f91 {
		width: 150px;
	}
}

#brxe-70bba9 {
	font-size: 20px;
	color: #fff;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 5px;
}

#brxe-814305 {
	font-size: 11.37px;
	color: #fff;
	letter-spacing: 13%;
}

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

#brxe-ce74c3 {
	align-items: center;
}

#brxe-3f1377 {
	align-items: center;
}

@media (max-width: 991px) {
	#brxe-3f1377 {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}

#brxe-8b0338 {
	width: 200px;
}

@media (max-width: 478px) {
	#brxe-8b0338 {
		width: 150px;
	}
}

#brxe-b61e13 {
	font-size: 20px;
	color: #fff;
	font-family: "mestiza";
	font-weight: 700;
	margin-bottom: 5px;
}

#brxe-4dab35 {
	font-size: 11.37px;
	color: #fff;
	letter-spacing: 13%;
}

@media (max-width: 478px) {
	#brxe-4dab35 {
		text-align: center;
	}
}

#brxe-5f00b4 {
	align-items: center;
}

#brxe-dbe9fe {
	align-items: center;
}

@media (max-width: 991px) {
	#brxe-dbe9fe {
		grid-column: 2/3;
		grid-row: 2/3;
	}
}

#brxe-085800 {
	flex-direction: row;
}

@media (max-width: 991px) {
	#brxe-085800 {
		display: grid;
		align-items: initial;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	#brxe-085800 {
		flex-direction: row;
		display: grid;
		align-items: initial;
		grid-auto-flow: column;
		grid-template-columns: 12;
	}
}

#brxe-b910c0 {
	padding-top: 40px;
	padding-bottom: 40px;
	border: 1px solid #f5f5f5;
	border-radius: 20px;
}

#brxe-e1a7bc {
	width: 242.6px;
	background-image: linear-gradient(135deg, #ee2679, #ffe419);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 13%;
	line-height: 20.4px;
	padding-top: 8.4px;
	padding-right: 15.6px;
	padding-bottom: 8.4px;
	padding-left: 15.6px;
	border-radius: 50px;
	min-height: 43.43px;
}

@media (max-width: 767px) {
	#brxe-e1a7bc {
		border: 1.5px solid #ffe419;
		background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
		background-color: rgba(0, 0, 0, 0);
		width: 100%;
	}
}

@media (max-width: 478px) {
	#brxe-e1a7bc {
		background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
		background-color: rgba(0, 0, 0, 0);
		border: 1.5px solid #ffe419;
	}
}

#brxe-add134 {
	flex-direction: column;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	#brxe-add134 {
		margin-top: 26px;
		margin-bottom: 0;
	}
}

#brxe-bc570e {
	width: 1222px;
}

@media (max-width: 991px) {
	#brxe-bc570e {
		width: 100%;
		padding-right: 10px;
		padding-left: 10px;
	}
}

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

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

#brxe-537b3b {
	padding-top: 60px;
	padding-bottom: 60px;
	background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-3654d58/inoculatetheworld.com/wp-content/uploads/2026/08/background_42674122.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#brxe-537b3b.nitro-lazy {
	background-image: none !important;
}

@media (max-width: 767px) {
	#brxe-537b3b {
		padding-top: 30px;
		padding-bottom: 46px;
	}
}

#brxe-c3fef6 {
	background-image: url("https://cdn-ileomca.nitrocdn.com/rwKKjiHNouJwiMrKsdYpgPzpdYDwxZtN/assets/images/optimized/rev-3654d58/inoculatetheworld.com/wp-content/uploads/2026/08/inoculate_oklahoma_founder-scaled-1.webp");
	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;
}

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

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

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

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

#brxe-1b3101 {
	color: #fff;
	font-weight: 700;
	font-family: "mestiza";
	font-size: 50px;
}

#brxe-0fcde6 {
	align-items: center;
	margin-bottom: 100px;
}

@media (max-width: 767px) {
	#brxe-0fcde6 {
		margin-bottom: 70px;
	}
}

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

#brxe-4d7bbe .bricks-button {
	font-weight: 600;
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 13%;
}

#brxe-4d7bbe .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-4d7bbe 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-4d7bbe 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-4d7bbe .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-4d7bbe .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-4d7bbe .choose-files {
	border-top: 0 solid #ffe419;
	border-right: 0 solid #ffe419;
	border-bottom: 1px solid #ffe419;
	border-left: 0 solid #ffe419;
}

#brxe-4d7bbe .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 {
	letter-spacing: 13% !important;
	background: linear-gradient(90deg, #ee2679 0%, #ffe419 100%) !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	padding-left: 30px !important;
	padding-right: 30px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	width: 221px;
	min-height: 43.43px;
}

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

#brxe-0d637d {
	padding-right: 60px;
	padding-left: 60px;
}

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

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

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

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

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

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

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

#brxe-fe51a1 {
	flex-direction: row;
	background-color: #095065;
}

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

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

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