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

@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);
		}
	}
	
	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);
		}
	}
	
	.brxe-carousel {
		min-width: 0;
		position: relative;
		width: 100%;
	}
	
	.brxe-carousel .image {
		background-position: 50%;
		background-size: cover;
		bottom: 0;
		height: 300px;
		left: 0;
		position: relative;
		right: 0;
		top: 0;
	}
	
	.brxe-carousel .swiper-autoheight .image {
		height: auto !important;
		width: 100%;
	}
	
	.brxe-carousel .content-wrapper, .brxe-carousel .overlay-wrapper {
		align-items: baseline;
		bottom: 0;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		height: 100%;
		left: 0;
		position: relative;
		right: 0;
		top: 0;
		z-index: 1;
	}
	
	.brxe-carousel .content-wrapper.top, .brxe-carousel .overlay-wrapper.top {
		justify-content: flex-start;
	}
	
	.brxe-carousel .content-wrapper.middle, .brxe-carousel .overlay-wrapper.middle {
		justify-content: center;
		margin-bottom: auto;
		margin-top: auto;
	}
	
	.brxe-carousel .content-wrapper.bottom, .brxe-carousel .overlay-wrapper.bottom {
		justify-content: flex-end;
	}
	
	.brxe-carousel .content-wrapper.left, .brxe-carousel .overlay-wrapper.left {
		align-items: flex-start;
		text-align: left;
	}
	
	.brxe-carousel .content-wrapper.center, .brxe-carousel .overlay-wrapper.center {
		align-items: center;
		text-align: center;
	}
	
	.brxe-carousel .content-wrapper.right, .brxe-carousel .overlay-wrapper.right {
		align-items: flex-end;
		text-align: right;
	}
	
	.brxe-carousel .content-wrapper.center.middle, .brxe-carousel .overlay-wrapper.center.middle {
		margin-bottom: auto;
		margin-top: auto;
	}
	
	.brxe-carousel .overlay-wrapper {
		position: absolute !important;
		z-index: 2;
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover {
		opacity: 0;
		position: relative;
		transition: var(--bricks-transition);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover:hover {
		opacity: 1;
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover .overlay-inner {
		transition: var(--bricks-transition);
		will-change: transform;
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-up .overlay-inner {
		transform: translateY(10px);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-up:hover .overlay-inner {
		transform: translateY(0);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-right .overlay-inner {
		transform: translateX(-10px);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-right:hover .overlay-inner {
		transform: translateY(0);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-down .overlay-inner {
		transform: translateY(-10px);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-down:hover .overlay-inner {
		transform: translateY(0);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-left .overlay-inner {
		transform: translateX(10px);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.fade-in-left:hover .overlay-inner {
		transform: translateY(0);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.zoom-in .overlay-inner {
		transform: scale(.8);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.zoom-in:hover .overlay-inner {
		transform: scale(1);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.zoom-out .overlay-inner {
		transform: scale(1.2);
	}
	
	.brxe-carousel .overlay-wrapper.show-on-hover.zoom-out:hover .overlay-inner {
		transform: scale(1);
	}
	
	.brxe-carousel .dynamic {
		margin: 0;
		padding: 0;
	}
	
	.brxe-carousel .meta {
		width: 100%;
	}
	
	.brxe-carousel .meta span:first-child {
		padding: 0;
	}
	
	.brxe-carousel .meta span + span {
		padding: 0 5px;
	}
	
	.brxe-carousel .meta span + span:before {
		content: " ·";
		left: -5px;
		position: relative;
	}
	
	.brxe-carousel .excerpt {
		margin-top: .5em;
	}
	
	.brxe-carousel .taxonomy {
		margin: 0 -5px;
	}
	
	.brxe-carousel .taxonomy a {
		display: inline-block;
		line-height: 2;
		margin: 0 5px;
	}
	
	.brxe-carousel .overlay-wrapper {
		height: 300px;
	}
}

@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);
		}
	}
	
	.gm-style {
		font: inherit !important;
		text-decoration: inherit !important;
	}
	
	.brxe-map {
		height: 300px;
		position: relative;
		width: 100%;
	}
	
	.brxe-map.no-key {
		overflow: hidden;
	}
	
	.brxe-map.no-key.bricks-draggable-item > iframe {
		pointer-events: none;
	}
	
	.brxe-map > iframe {
		border: 0;
	}
	
	.brxe-map ol, .brxe-map ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	.brxe-map .infoBox {
		background-color: #fff;
		border-radius: 4px;
		box-shadow: 4px 4px 4px rgba(0, 0, 0, .2);
		display: flex;
		flex-direction: column;
		font-size: 14px;
		gap: 5px;
		min-width: 300px;
		padding: 10px;
		transform: translate(-50%, calc(-100% - 60px)) !important;
	}
	
	.brxe-map .infoBox:after {
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #fff;
		bottom: 0;
		content: "";
		left: 50%;
		position: absolute;
		transform: translate(-50%, 100%);
	}
	
	.brxe-map .infoBox .title {
		font-size: 15px;
		line-height: 1.4;
		margin: 0;
		padding-right: 30px;
	}
	
	.brxe-map .infoBox .subtitle {
		font-size: 14px;
		font-weight: 500;
	}
	
	.brxe-map .infoBox .content {
		font-size: 13px;
		margin: 0;
	}
	
	.brxe-map .infoBox .content + .images {
		margin-top: 10px;
	}
	
	.brxe-map .infoBox .images {
		display: grid;
		gap: 5px;
		grid-template-columns: repeat(4, 1fr);
	}
	
	.brxe-map .infoBox .images img {
		width: 100%;
	}
	
	.brxe-map .infoBox .close-infobox {
		cursor: pointer;
		font-size: 30px;
		line-height: 1;
		pointer-events: all;
		position: absolute;
		right: 15px;
		top: 10px;
	}
	
	.brxe-map .infoBox > img {
		height: 14px;
		position: absolute !important;
		right: 0;
		top: 0;
		width: 14px;
	}
	
	.brxe-map .brx-infobox-popup {
		display: flex;
		flex-direction: column;
		min-width: 300px;
		transform: translate(-50%, calc(-100% - 60px)) !important;
	}
	
	.brxe-map .brx-infobox-popup:after {
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #fff;
		bottom: 0;
		content: "";
		left: 50%;
		position: absolute;
		transform: translate(-50%, 100%);
		z-index: 1;
	}
	
	.brxe-map .brx-infobox-popup .close-infobox {
		cursor: pointer;
		font-size: 30px;
		line-height: 1;
		pointer-events: all;
		position: absolute;
		right: 15px;
		top: 10px;
		z-index: 1;
	}
	
	.brxe-map .brx-infobox-popup img {
		width: 100%;
	}
	
	.brxe-map .brx-map-no-results {
		align-items: center;
		display: flex;
		justify-content: center;
		left: 50%;
		padding: 15px 30px;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 999999;
	}
	
	.brxe-map .brx-map-no-results, .brxe-map .brx-marker-text {
		background-color: #fff;
		box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
	}
	
	.brxe-map .brx-marker-text {
		border-radius: 4px;
		font-size: 14px;
		max-width: 200px;
		overflow: hidden;
		padding: 5px 10px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	.brxe-map .brx-map-cluster {
		fill: #00f;
	}
	
	.brxe-map .brx-map-cluster text {
		fill: #fff;
	}
}

@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-video) {
		align-items: center;
		aspect-ratio: 16/9;
		display: flex;
		justify-content: center;
		overflow: hidden;
		position: relative;
		width: 100%;
	}
	
	:where(.brxe-video) iframe, :where(.brxe-video) video {
		border: none;
		height: 100%;
		position: absolute;
		top: 0;
		width: 100%;
	}
	
	:where(.brxe-video) video[poster]:not([data-is-loaded]) {
		object-fit: cover;
	}
	
	@supports not (aspect-ratio:16/9) {
		:where(.brxe-video) {
			aspect-ratio: auto;
			padding-top: 56.25%;
		}
	}
	
	.brxe-video .plyr {
		bottom: 0;
		font-family: inherit;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
	}
	
	.brxe-video .plyr .plyr__controls > .plyr__control {
		padding: 8px;
	}
	
	.brxe-video .plyr .plyr__control--overlaid {
		align-items: center;
		background-color: rgba(0, 0, 0, .65);
		border-radius: 0;
		display: flex !important;
		height: 50px;
		justify-content: center;
		padding: 0;
		width: 80px;
	}
	
	.brxe-video .plyr .plyr__control--overlaid:hover {
		background-color: rgba(0, 0, 0, .9);
	}
	
	.brxe-video .plyr .plyr__control--overlaid svg {
		height: 18px;
		width: 18px;
	}
	
	.brxe-video .plyr .plyr__controls .plyr__control {
		background-color: transparent;
		color: inherit;
	}
	
	.brxe-video .plyr .plyr__controls .plyr__control.plyr__tab-focus {
		background: transparent;
		box-shadow: 0 0 0 2px;
	}
	
	.brxe-video .plyr input[type=range]:hover::-webkit-slider-thumb {
		visibility: visible;
	}
	
	.brxe-video .plyr input[type=range]::-webkit-slider-runnable-track {
		border-radius: 0;
		color: hsla(0, 0%, 100%, .75);
	}
	
	.brxe-video .plyr input[type=range]::-webkit-slider-thumb {
		background: #fff;
		box-shadow: none;
		visibility: hidden;
	}
	
	.brxe-video .plyr input[type=range]::-moz-range-track {
		border-radius: 0;
		color: hsla(0, 0%, 100%, .75);
	}
	
	.brxe-video .plyr input[type=range]::-moz-range-thumb {
		background: #fff;
		box-shadow: none;
	}
	
	.brxe-video .plyr input[type=range]::-moz-range-progress {
		border-radius: 0;
	}
	
	.brxe-video .plyr input[type=range]::-ms-track {
		border-radius: 0;
		color: hsla(0, 0%, 100%, .75);
	}
	
	.brxe-video .plyr input[type=range]::-ms-fill-lower, .brxe-video .plyr input[type=range]::-ms-fill-upper {
		border-radius: 0;
	}
	
	.brxe-video .plyr input[type=range]::-ms-thumb {
		background: #fff;
		box-shadow: none;
	}
	
	.brxe-video .plyr input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
		box-shadow: none;
	}
	
	.brxe-video .plyr input[type=range].plyr__tab-focus::-moz-range-track {
		box-shadow: none;
	}
	
	.brxe-video .plyr input[type=range].plyr__tab-focus::-ms-track {
		box-shadow: none;
	}
	
	.brxe-video .plyr .plyr__progress__buffer::-webkit-progress-value {
		border-radius: 0;
	}
	
	.brxe-video .plyr .plyr__progress__buffer::-moz-progress-bar {
		border-radius: 0;
	}
	
	.brxe-video .plyr .plyr__progress__buffer::-ms-fill {
		border-radius: 0;
	}
	
	.brxe-video .plyr .plyr__volume {
		max-width: none;
		min-width: 0;
		width: auto;
	}
	
	.brxe-video .plyr .plyr__volume:hover input[type=range] {
		margin: 0 5px;
		width: 60px;
	}
	
	.brxe-video .plyr .plyr__volume input[type=range] {
		margin: 0;
		transition: width .1s ease-out;
		width: 0;
	}
	
	.brxe-video .plyr .plyr__controls__item, .brxe-video .plyr input[type=range] {
		cursor: pointer;
	}
	
	.brxe-video .plyr .plyr__menu__container .plyr__control[role=menuitemradio]:hover:before, .brxe-video .plyr .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before, .brxe-video .plyr .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:hover:before {
		background-color: #000;
	}
	
	.brxe-video .plyr .plyr__menu__container .plyr__control[role=menuitemradio]:hover:after {
		background-color: #fff;
		opacity: 1;
		transform: translateY(-50%) scale(1);
	}
	
	.bricks-video-preview-image {
		background-position: 50%;
		background-repeat: no-repeat;
	}
	
	.bricks-video-overlay, .bricks-video-preview-image {
		background-size: cover;
		bottom: 0;
		cursor: pointer;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
	}
	
	.bricks-video-overlay {
		align-items: center;
		display: flex;
		justify-content: center;
		z-index: 1;
	}
	
	.bricks-video-overlay.bricks-lazy-hidden {
		background-image: none !important;
	}
	
	.bricks-video-overlay.bricks-lazy-hidden.nitro-lazy {
		background-image: none !important;
	}
	
	.bricks-video-overlay-icon {
		color: #fff;
		cursor: pointer;
		font-size: 60px;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 2;
	}
}

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

@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 {
	@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);
		}
	}
	
	.brxe-post-sharing {
		display: flex;
		flex-wrap: wrap;
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	.brxe-post-sharing.brand-colors {
		color: #fff;
	}
	
	.brxe-post-sharing.brand-colors a {
		border: none;
	}
	
	.brxe-post-sharing.brand-colors .facebook {
		background-color: #3b5998;
	}
	
	.brxe-post-sharing.brand-colors .twitter {
		background-color: #4cc2ff;
	}
	
	.brxe-post-sharing.brand-colors .googleplus {
		background-color: #d23e2b;
	}
	
	.brxe-post-sharing.brand-colors .whatsapp {
		background-color: #25d366;
	}
	
	.brxe-post-sharing.brand-colors .telegram {
		background-color: #54a9eb;
	}
	
	.brxe-post-sharing.brand-colors .vkontakte {
		background-color: #5181b8;
	}
	
	.brxe-post-sharing.brand-colors .linkedin {
		background-color: #4875b4;
	}
	
	.brxe-post-sharing.brand-colors .pinterest {
		background-color: #c91a22;
	}
	
	.brxe-post-sharing.brand-colors .bluesky {
		background-color: #0af;
	}
	
	.brxe-post-sharing.brand-colors .email {
		background-color: var(--bricks-text-light);
	}
	
	.brxe-post-sharing a {
		align-items: center;
		border-radius: 50%;
		display: flex;
		height: 30px;
		justify-content: center;
		text-align: center;
		width: 30px;
	}
	
	.brxe-post-sharing a.telegram svg {
		margin-left: -2px;
	}
	
	.brxe-post-sharing i:before {
		line-height: inherit;
	}
	
	.brxe-post-sharing svg {
		fill: currentcolor;
		flex-shrink: 0;
		height: 1em;
	}
}

@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-f1cc79 a {
	font-size: var(--size-heading-s);
}

#brxe-3113de a {
	font-size: var(--size-heading-s);
}

#brxe-80d888 a {
	font-size: var(--size-heading-s);
}

#brxe-507696 {
	font-family: "Palanquin";
	font-weight: 400;
	font-size: var(--size-text-lg);
}

#brxe-6c9296 {
	font-size: var(--size-heading-xl);
	text-wrap: pretty;
}

@media (max-width: 1280px) {
	#brxe-6c9296 {
		text-align: center;
	}
}

#brxe-163c02 {
	row-gap: var(--gap-space-xs);
	text-align: left;
}

@media (max-width: 1280px) {
	#brxe-163c02 {
		align-items: center;
		text-align: center;
	}
}

#brxe-4718a3 {
	text-align: left;
	font-size: var(--size-heading-xs);
	font-family: "Antonio";
	line-height: 1.2;
	text-wrap: nowrap;
}

@media (max-width: 1280px) {
	#brxe-4718a3 {
		text-align: center;
	}
}

#brxe-d06b23 {
	text-align: left;
	line-height: 1.2;
	text-wrap: nowrap;
}

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

#brxe-1bab39 {
	text-align: left;
	font-size: var(--size-heading-xs);
	font-family: "Antonio";
	line-height: 1.2;
}

@media (max-width: 1280px) {
	#brxe-1bab39 {
		text-align: center;
	}
}

#brxe-7e24d9 {
	text-align: left;
	line-height: 1.2;
}

@media (max-width: 1280px) {
	#brxe-7e24d9 {
		text-align: center;
	}
}

#brxe-935cec {
	font-size: var(--size-text);
	font-family: "Palanquin";
	line-height: 1.2;
	text-align: left;
}

@media (max-width: 1280px) {
	#brxe-935cec {
		text-align: center;
	}
}

@media (max-width: 1280px) {
	#brxe-249c3e {
		align-items: center;
		text-align: center;
	}
}

#brxe-cb86a7 {
	width: auto;
	display: flex;
	flex-direction: column;
	row-gap: var(--gap-space-xs);
}

@media (max-width: 1280px) {
	#brxe-cb86a7 {
		align-items: center;
		text-align: center;
		align-self: center !important;
		border-style: none;
		padding-left: 0;
	}
}

#brxe-4230a8 {
	flex-direction: row;
	row-gap: var(--gap-grid);
	column-gap: var(--gap-grid);
}

@media (max-width: 1280px) {
	#brxe-4230a8 {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		column-gap: var(--gap-container);
	}
}

#brxe-bd5aa0:not(.tag), #brxe-bd5aa0 img {
	object-fit: cover;
	object-position: 50% 50%;
}

#brxe-bd5aa0 {
	flex-grow: 1;
}

#brxe-a7eb7e {
	text-align: center;
	font-size: var(--size-heading-xs);
	line-height: 1.4;
	text-wrap: balance;
	max-width: 80ch;
}

#brxe-a7eb7e a {
	text-align: center;
	font-size: var(--size-heading-xs);
	line-height: 1.4;
	text-wrap: balance;
	font-size: inherit;
}

#brxe-a7eb7e {
	padding: 0px;
	margin: 0px;
}

#brxe-a7eb7e a {
	text-decoration: underline;
}

@media (max-width: 767px) {
	#brxe-a7eb7e {
		border-style: none;
	}
}

#brxe-056351 {
	align-items: center;
	color: var(--color-uwga-neutral-dark);
}

#brxe-e6b382 {
	color: var(--color-uwga-neutral-dark);
}

#brxe-123712 {
	row-gap: var(--gap-content);
	justify-content: flex-start;
	max-width: 1000px;
	width: 100%;
}

#brxe-5d90d1 {
	text-transform: none;
	font-size: var(--size-heading-md);
}

#brxe-ce2de0 {
	text-align: center;
	align-items: center;
}

#brxe-45fec8 {
	row-gap: var(--gap-content);
}

.brxe-a0a2f5 .brxe-613b0d.brxe-div {
	border-color: var(--color-uwga-neutral-dark);
}

.brxe-a0a2f5 .brxe-de11d5.brxe-block {
	align-items: center;
	justify-content: flex-start;
}

.brxe-a0a2f5 .brxe-dgithi.brxe-text-basic {
	font-size: var(--size-text-lg);
	font-weight: 700;
}

.brxe-a0a2f5 .brxe-c4759a.brxe-block {
	row-gap: var(--gap-space-s);
}

.brxe-8f217d.brxi-074e2d {
	align-self: flex-end;
}

.brxe-a0a2f5 .brxe-090688.brxe-container {
	flex-direction: row;
	column-gap: var(--gap-space-m);
}

.brxe-a0a2f5 .brxe-2c7c4b.brxe-section {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

.brxe-a0a2f5 .brxe-4f2ba1.brxe-text-basic {
	font-weight: 700;
}

.brxe-a0a2f5 .brxe-5d0935.brxe-text-basic {
	line-height: 1.2;
}

.brxe-a0a2f5 .brxe-datgag.brxe-text-link {
	font-size: var(--size-text-s);
	text-decoration: underline;
	color: var(--uwga-primary);
	cursor: pointer;
}

.brxe-a0a2f5 .brxe-0f5307.brxe-block {
	align-items: center;
	text-align: center;
	row-gap: var(--gap-space-xs);
}

.brxe-a0a2f5 .brxe-cb48bc.brxe-block {
	align-items: center;
	row-gap: var(--gap-space-xs);
	text-align: center;
}

.brxe-a0a2f5 .brxe-62431a.brxe-block {
	row-gap: var(--gap-space-s);
}

.brxe-a0a2f5.brxe-div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-self: flex-start !important;
}

#brxe-5b6eb6 {
	align-items: center;
	justify-content: center;
	flex-direction: row;
	column-gap: var(--gap-container);
	row-gap: var(--gap-container);
	flex-wrap: wrap;
}

#brxe-f5b82b {
	row-gap: var(--gap-content);
	column-gap: var(--gap-container);
	align-items: center;
	width: 100%;
	max-width: 1000px;
}

#brxe-19ebb0 {
	row-gap: var(--gap-content);
}

#brxe-b2ddcc {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

#brxe-0b0217 {
	color: var(--color-uwga-neutral-white);
}

#brxe-96c7e7 {
	color: var(--color-uwga-neutral-white);
}

#brxe-b4a633 {
	text-transform: none;
	font-family: "Antonio";
	font-weight: 700;
	font-size: var(--size-heading-md);
	color: var(--color-uwga-action);
	line-height: 1.2;
}

#brxe-6b3eeb {
	font-size: var(--size-text-s);
	color: var(--color-uwga-neutral-dark);
	text-align: center;
}

#brxe-8bc799 {
	display: flex;
	align-items: center;
	justify-content: center;
	row-gap: normal;
}

#brxe-b11b11 {
	font-size: var(--size-heading-xs);
	text-transform: uppercase;
	font-family: "Antonio";
	font-weight: 700;
}

#brxe-199792 {
	font-family: "Antonio";
	font-weight: 700;
	font-size: 6rem;
	line-height: 1;
}

#brxe-42b79b {
	display: flex;
	flex-direction: column;
}

#brxe-6aff66 {
	text-align: center;
	line-height: 1;
	font-size: 8rem;
}

#brxe-fbcf34 {
	flex-wrap: nowrap;
	justify-content: center;
	display: flex;
}

#brxe-571386 {
	font-size: var(--size-text-s);
}

#brxe-6949e4 {
	flex-wrap: nowrap;
	justify-content: center;
	display: flex;
	color: var(--color-uwga-action);
	text-align: center;
	align-items: center;
	flex-direction: column;
	row-gap: var(--gap-space-xs);
}

#brxe-2c16f6 {
	font-size: var(--size-heading-xs);
	text-transform: uppercase;
	font-family: "Antonio";
	font-weight: 700;
}

#brxe-b3e525 {
	font-family: "Antonio";
	font-weight: 700;
	font-size: 6rem;
	line-height: 1;
}

#brxe-c8c26c {
	display: flex;
	flex-direction: column;
}

#brxe-9226bc {
	text-align: center;
	line-height: 1;
	font-size: 8rem;
}

#brxe-d30233 {
	flex-wrap: nowrap;
	justify-content: center;
	display: flex;
}

#brxe-0d7023 {
	font-size: var(--size-text-s);
}

#brxe-f8ccbc {
	flex-wrap: nowrap;
	justify-content: center;
	display: flex;
	color: var(--color-uwga-action);
	text-align: center;
	align-items: center;
	flex-direction: column;
	row-gap: var(--gap-space-xs);
}

#brxe-d07ee4 {
	font-size: var(--size-heading-xs);
	text-transform: uppercase;
	font-family: "Antonio";
	font-weight: 700;
}

#brxe-26cc65 {
	font-family: "Antonio";
	font-weight: 700;
	font-size: 6rem;
	line-height: 1;
}

#brxe-18db26 {
	display: flex;
	flex-direction: column;
}

#brxe-4f3134 {
	text-align: center;
	line-height: 1;
	font-size: 8rem;
}

#brxe-fe44e6 {
	flex-wrap: nowrap;
	justify-content: center;
	display: flex;
}

#brxe-5a00c1 {
	font-size: var(--size-text-s);
}

#brxe-a7ab55 {
	flex-wrap: nowrap;
	justify-content: center;
	display: flex;
	color: var(--color-uwga-action);
	text-align: center;
	align-items: center;
	flex-direction: column;
	row-gap: var(--gap-space-xs);
}

#brxe-d989d0 {
	row-gap: var(--gap-content);
	column-gap: var(--gap-content);
}

@media (max-width: 1280px) {
	#brxe-d989d0 {
		flex-direction: row;
		justify-content: space-between;
	}
}

#brxe-c9a376 {
	row-gap: var(--gap-grid);
	justify-content: flex-start;
	align-items: center;
}

#brxe-642628 {
	row-gap: 12px;
	justify-content: flex-start;
	padding-top: var(--padding-m);
	padding-right: var(--padding-m);
	padding-bottom: var(--padding-m);
	padding-left: var(--padding-m);
	color: var(--color-uwga-neutral-light);
	align-items: center;
	border-radius: 8px;
	align-self: stretch !important;
	width: 100%;
	max-width: 477px;
	background-color: var(--color-uwga-neutral-light);
}

@media (max-width: 1280px) {
	#brxe-642628 {
		width: 100%;
		max-width: 1000px;
	}
}

@media (max-width: 767px) {
	#brxe-642628 {
		width: 100%;
		max-width: 400px;
		align-self: center !important;
	}
}

@media (max-width: 478px) {
	#brxe-642628 {
		max-width: 477px;
	}
}

#brxe-9511c0 {
	flex-direction: row;
	justify-content: center;
	column-gap: var(--gap-grid);
	row-gap: var(--gap-grid);
	align-items: flex-start;
}

@media (max-width: 1280px) {
	#brxe-9511c0 {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		align-self: center !important;
	}
}

#brxe-887dba {
	font-size: var(--size-text-s);
	color: var(--color-uwga-neutral-white);
}

#brxe-ea9d14 {
	row-gap: var(--gap-space-s);
	align-items: center;
}

#brxe-222fdb {
	row-gap: var(--gap-container);
	max-width: 1200px;
	width: 100%;
}

#brxe-433edf {
	background-color: var(--color-uwga-action-dark);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

@media (max-width: 1280px) {
	#brxe-433edf {
		background-color: var(--color-uwga-action-dark);
	}
}

#brxe-de6ce0 {
	align-items: center;
	padding-top: var(--gap-content);
}

#brxe-404585 {
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 1000px;
}

#brxe-079449 {
	flex-direction: column;
	column-gap: var(--gap-grid);
	row-gap: var(--gap-grid);
	grid-template-columns: var(--grid-2-3);
	align-items: flex-start;
	align-content: flex-start;
	align-items: center;
	justify-content: center;
	align-self: center !important;
}

#brxe-f89ecb {
	row-gap: var(--gap-container);
}

#brxe-5d9c32 {
	text-align: center;
	line-height: 1.6;
}

#brxe-5a1f8a {
	align-items: center;
	row-gap: var(--gap-content);
	color: var(--color-uwga-neutral-white);
}

.brxe-72dc5a .brxe-d558ca.brxe-button:hover {
	color: var(--color-uwga-action);
}

#brxe-e7038e {
	row-gap: var(--gap-container);
	width: 100%;
	max-width: 1200px;
}

#brxe-7a1d26 {
	display: flex;
	background-color: var(--color-uwga-primary);
}

.brxe-ff9efa .brxe-4b0d52.brxe-text-basic {
	text-align: center;
}

.brxe-ff9efa .brxe-41e040.brxe-block {
	align-items: center;
}

.brxe-ff9efa .brxe-eceb10.brxe-block {
	row-gap: var(--gap-grid);
	flex-direction: row;
	display: flex;
	flex-wrap: wrap;
	column-gap: var(--gap-grid);
	justify-content: center;
	padding-top: var(--gap-content);
}

.brxe-ff9efa.brxe-block {
	row-gap: 0px;
}

#brxe-e0f366 {
	row-gap: var(--gap-container);
	width: 100%;
	max-width: 1000px;
}

#brxe-3a1d2d {
	text-align: center;
}

#brxe-3a1d2d a {
	text-align: center;
	font-size: inherit;
}

#brxe-c8fd78 {
	align-items: center;
	justify-content: flex-start;
	padding-top: calc(var(--gap-content) * .2);
}

#brxe-6ddb23 {
	padding-top: var(--gap-content);
	align-items: center;
	width: 100%;
	max-width: 1000px;
	row-gap: 0px;
}

#brxe-0b8391 {
	row-gap: var(--gap-container);
	column-gap: var(--gap-container);
	align-items: center;
	width: 100%;
	max-width: 1000px;
}

#brxe-4ee344 {
	background-color: var(--uwga-neutral-light);
}

#brxe-7628e4 {
	background-color: var(--color-uwga-primary);
	color: var(--color-uwga-neutral-white);
}

#brxe-7628e4:hover {
	background-color: var(--color-uwga-neutral-white);
	color: var(--color-uwga-primary);
}

.brxe-e699e5 .brxe-03e590.brxe-text-link {
	cursor: pointer;
}

#brxe-aaqgpt {
	position: fixed;
	z-index: 1;
	bottom: 0px;
	max-width: 1600px;
	padding-top: var(--padding-s);
	padding-bottom: var(--padding-s);
	background-color: rgba(242, 242, 242, .81);
}
