/**
 * Jetpack related posts
 */

/**
 * The Gutenberg block
 */

.jp-related-posts-i2 {
	margin-top: 1.5rem;
}

.jp-related-posts-i2__list {
	--hgap: 1rem;

	display: flex;
	flex-wrap: wrap;
	column-gap: var(--hgap);
	row-gap: 2rem;

	margin: 0;
	padding: 0;

	list-style-type: none;
}

.jp-related-posts-i2__post {
	display: flex;
	flex-direction: column;

	/* Default: 2 items by row */
	flex-basis: calc(( 100% - var(--hgap) ) / 2);
}

/* Quantity qeuries: see https://alistapart.com/article/quantity-queries-for-css/ */
.jp-related-posts-i2__post:nth-last-child(n+3):first-child,
.jp-related-posts-i2__post:nth-last-child(n+3):first-child ~ * {

	/* From 3 total items on, 3 items by row */
	flex-basis: calc(( 100% - var(--hgap) * 2 ) / 3);
}

.jp-related-posts-i2__post:nth-last-child(4):first-child,
.jp-related-posts-i2__post:nth-last-child(4):first-child ~ * {

	/* Exception for 4 total items: 2 items by row */
	flex-basis: calc(( 100% - var(--hgap) ) / 2);
}

.jp-related-posts-i2__post-link {
	display: flex;
	flex-direction: column;
	row-gap: 0.5rem;

	width: 100%;
	margin-bottom: 1rem;

	line-height: 1.2;
}

.jp-related-posts-i2__post-link:focus-visible {
	outline-offset: 2px;
}

.jp-related-posts-i2__post-img {
	order: -1;

	max-width: 100%;
}

.jp-related-posts-i2__post-defs {
	margin: 0;

	list-style-type: unset;
}

/* Hide, except from screen readers */
.jp-related-posts-i2__post-defs dt {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.jp-related-posts-i2__post-defs dd {
	margin: 0;
}

/* List view */

.jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__list {
	display: block;
}

.jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__post {
	margin-bottom: 2rem;
}

/* Breakpoints */

@media only screen and (max-width: 640px) {

	.jp-related-posts-i2__list {
		display: block;
	}

	.jp-related-posts-i2__post {
		margin-bottom: 2rem;
	}
}

/* Container */

#jp-relatedposts {
	display: none;
	padding-top: 1em;
	margin: 1em 0;
	position: relative;
	clear: both;
}

.jp-relatedposts::after {
	content: "";
	display: block;
	clear: both;
}

/* Headline above related posts section, labeled "Related" */

#jp-relatedposts h3.jp-relatedposts-headline {
	margin: 0 0 1em 0;
	display: inline-block;
	float: left;
	font-size: 9pt;
	font-weight: 700;
	font-family: inherit;
}

#jp-relatedposts h3.jp-relatedposts-headline em::before {
	content: "";
	display: block;
	width: 100%;
	min-width: 30px;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	margin-bottom: 1em;
}

#jp-relatedposts h3.jp-relatedposts-headline em {
	font-style: normal;
	font-weight: 700;
}

/* Related posts items (wrapping items) */

#jp-relatedposts .jp-relatedposts-items {
	clear: left;
}

#jp-relatedposts .jp-relatedposts-items-visual {
	margin-right: -20px;
}

/* Related posts item */

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
	float: left;
	width: 33%;
	margin: 0 0 1em; /* Needs to be same as the main outer wrapper for Related Posts */
	box-sizing: border-box;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post {
	padding-right: 20px;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4) {
	clear: both;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a {
	text-decoration: underline;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/* Related posts item content */

#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs {
	position: relative;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	border-bottom: 0;
}

#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time {
	margin-bottom: 0;
}

#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
	text-transform: none;
	margin: 0;
	font-family: inherit;
	display: block;
	max-width: 100%;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
	font-size: inherit;
	font-weight: 400;
	text-decoration: none;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover {
	text-decoration: underline;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span {
	display: block;
	max-width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span {
	height: auto;
	max-width: 100%;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
	opacity: 0.6;
}

/* Hide the date by default, but leave the element there if
 * a theme wants to use css to make it visible. */
.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
	display: none;
}

/* Behavior when there are thumbnails in visual mode */
#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt {
	display: none;
}

/* Behavior when there are no thumbnails in visual mode */
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt {
	overflow: hidden;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span {
	margin-bottom: 1em;
}

/* List Layout */
#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post {
	clear: both;
	width: 100%;
}

#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img {
	float: left;
	overflow: hidden;
	max-width: 33%;
	margin-right: 3%;
}

#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
	display: inline-block;
	max-width: 63%;
}

/*
 * Responsive
 */

@media only screen and (max-width: 640px) {

	#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
		width: 50%;
	}

	#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n) {
		clear: left;
	}

	#jp-relatedposts .jp-relatedposts-items-visual {
		margin-right: 20px;
	}
}

@media only screen and (max-width: 320px) {

	#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
		width: 100%;
		clear: both;
		margin: 0 0 1em;
	}

	#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img,
	#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
		float: none;
		max-width: 100%;
		margin-right: 0;
	}
}

/*
 * Hide the related post section in the print view of a post
 */

@media print {

	.jp-relatedposts {
		display: none !important;
	}
}
.wp-block-navigation{--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center;position:relative}.wp-block-navigation ul{margin-bottom:0;margin-left:0;margin-top:0;padding-left:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-item{align-items:center;background-color:inherit;display:flex;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{display:block}.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{color:inherit}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation :where(a),.wp-block-navigation :where(a:active),.wp-block-navigation :where(a:focus){text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;background-color:inherit;border:none;color:currentColor;display:inline-block;font-size:inherit;height:.6em;line-height:0;margin-left:.25em;padding:0;width:.6em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{stroke:currentColor;display:inline-block;height:inherit;margin-top:.075em;width:inherit}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{align-items:normal;background-color:inherit;color:inherit;display:flex;flex-direction:column;height:0;left:-1px;opacity:0;overflow:hidden;position:absolute;top:100%;visibility:hidden;width:0;z-index:2}@media not (prefers-reduced-motion){.wp-block-navigation .has-child .wp-block-navigation__submenu-container{transition:opacity .1s linear}}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-left:auto;margin-right:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content{margin:0}@media (min-width:782px){.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{background:#0000;content:"";display:block;height:100%;position:absolute;right:100%;width:.5em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon{margin-right:.25em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg{transform:rotate(-90deg)}}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container{height:auto;min-width:200px;opacity:1;overflow:visible;visibility:visible;width:auto}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{left:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:0}}.wp-block-navigation-submenu{display:flex;position:relative}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:initial;border:none;color:currentColor;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-align:left;text-transform:inherit}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-left:0;padding-right:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-left:-.6em;pointer-events:none}.wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle){padding:0}.wp-block-navigation .wp-block-page-list,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{left:auto;right:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:-1px;right:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:auto;right:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;border:1px solid #00000026}.wp-block-navigation.has-background .wp-block-navigation__submenu-container{background-color:inherit}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container{color:#000}.wp-block-navigation__container{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial);list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em)}to{opacity:1;transform:translateY(0)}}.wp-block-navigation__responsive-container{bottom:0;display:none;left:0;position:fixed;right:0;top:0}.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a){color:inherit}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){background-color:inherit!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{background-color:inherit;display:flex;flex-direction:column;overflow:auto;padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem);z-index:100000}@media not (prefers-reduced-motion){.wp-block-navigation__responsive-container.is-menu-open{animation:overlay-menu__fade-in-animation .1s ease-out;animation-fill-mode:forwards}}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-justification-setting,inherit);display:flex;flex-direction:column;flex-wrap:nowrap;overflow:visible;padding-top:calc(2rem + 24px)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{border:none;height:auto;min-width:200px;opacity:1;overflow:initial;padding-left:2rem;padding-right:2rem;position:static;visibility:visible;width:auto}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{align-items:var(--navigation-layout-justification-setting,initial);display:flex;flex-direction:column}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list{background:#0000!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:auto;right:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){background-color:inherit;display:block;position:relative;width:100%;z-index:auto}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open{color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{background:#0000;border:none;color:currentColor;cursor:pointer;margin:0;padding:0;text-transform:inherit;vertical-align:middle}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;display:block;height:24px;pointer-events:none;width:24px}.wp-block-navigation__responsive-container-open{display:flex}.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{font-family:inherit;font-size:inherit;font-weight:inherit}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;right:0;top:0;z-index:2}.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close{font-family:inherit;font-size:inherit;font-weight:inherit}.wp-block-navigation__responsive-close{width:100%}.has-modal-open .wp-block-navigation__responsive-close{margin-left:auto;margin-right:auto;max-width:var(--wp--style--global--wide-size,100%)}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:46px}@media (min-width:782px){.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:32px}}html.has-modal-open{overflow:hidden}.wp-block-cover,.wp-block-cover-image{align-items:center;background-position:50%;box-sizing:border-box;display:flex;justify-content:center;min-height:430px;overflow:hidden;overflow:clip;padding:1em;position:relative}.wp-block-cover .has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover .has-background-dim.has-background-gradient,.wp-block-cover-image .has-background-dim.has-background-gradient{background-color:initial}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;content:""}.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background,.wp-block-cover-image .wp-block-cover__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover.has-background-dim:not(.has-background-gradient):before{bottom:0;left:0;opacity:.5;position:absolute;right:0;top:0}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0{opacity:0}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10{opacity:.1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20{opacity:.2}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30{opacity:.3}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40{opacity:.4}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50{opacity:.5}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60{opacity:.6}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70{opacity:.7}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80{opacity:.8}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90{opacity:.9}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container{color:inherit;position:relative;width:100%}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0}.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover .wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background,.wp-block-cover-image .wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background{border:none;bottom:0;box-shadow:none;height:100%;left:0;margin:0;max-height:none;max-width:none;object-fit:cover;outline:none;padding:0;position:absolute;right:0;top:0;width:100%}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:fixed;background-repeat:no-repeat;background-size:cover}@supports (-webkit-touch-callout:inherit){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated,.wp-block-cover__image-background.is-repeated,video.wp-block-cover__video-background.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover .wp-block-cover-text,.wp-block-cover-image .wp-block-cover-image-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;margin-bottom:0;max-width:840px;padding:.44em;text-align:center;z-index:1}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background{z-index:0}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before{z-index:1}.has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container{z-index:auto}/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}

.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}
.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-regular-400.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-solid-900.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-solid-900.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-regular-400.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-solid-900.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-regular-400.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-v4compatibility.woff2) format("woff2"),url(/wp-content/themes/organic-stax/inc/plugins/organic-blocks-bundle/css/../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a}/************************************************
	Columns
************************************************/

.obb-column {
	float: left;
	min-height: 1px;
	position: relative;
	box-sizing: border-box;
}
.obb-columns-1 { width: 100%; float: none; }
.obb-columns-2 { width: 50%; }
.obb-columns-3 { width: 33.33%; }
.obb-columns-4 { width: 25%; }
.obb-columns-5 { width: 20%; }
.obb-columns-6 { width: 16.66%; }

.obb-columns-2:nth-child(2n+2),
.obb-columns-3:nth-child(3n+2),
.obb-columns-4:nth-child(4n+2),
.obb-columns-5:nth-child(5n+2),
.obb-columns-6:nth-child(6n+2) {
	clear: both;
}
.obb-columns-2:nth-child(2n+2) article,
.obb-columns-3:nth-child(3n+3) article,
.obb-columns-4:nth-child(4n+4) article,
.obb-columns-5:nth-child(5n+5) article,
.obb-columns-6:nth-child(6n+6) article {
	margin-right: 0px !important;
}
.obb-columns-2:nth-child(2n+1) article,
.obb-columns-3:nth-child(3n+1) article,
.obb-columns-4:nth-child(4n+1) article,
.obb-columns-5:nth-child(5n+1) article,
.obb-columns-6:nth-child(6n+1) article {
	margin-left: 0px !important;
}
.obb-grid-spacer {
	width: 24px;
}
.obb-masonry-wrapper.obb-columns-2 {
	width: calc(50% - ( 24px * 1 / 2 ));
}
.obb-masonry-wrapper.obb-columns-3 {
	width: calc(33.33% - ( 24px * 2 / 3 ));
}
.obb-masonry-wrapper.obb-columns-4 {
	width: calc(25% - ( 24px * 3 / 4 ));
}
.obb-masonry-wrapper.obb-columns-5 {
	width: calc(20% - ( 24px * 4 / 5 ));
}
.obb-masonry-wrapper.obb-columns-6 {
	width: calc(16.66% - ( 24px * 5 / 6 ));
}

/************************************************
	Global
************************************************/

/* Micro Clearfix */
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.organic-block > :first-child {
    margin-top: 0;
}
.organic-block > :last-child {
    margin-bottom: 0;
}
.obb-bg-overlay {
	position: absolute;
	top: 0; left: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.obb-featured-img {
	display: block;
	background-size: cover;
	background-position: center;
}
.obb-featured-img .obb-hide-img {
	display: block;
}
.obb-featured-img .obb-hide-img img {
	display: block;
	line-height: 0;
	opacity: 0;
}
.obb-card {
	padding: 24px;
	box-sizing: border-box;
	overflow: hidden;
}
.obb-columns-1 .obb-card,
.obb-columns-2 .obb-card,
.obb-columns-3 .obb-card {
	padding: 36px;
}
.obb-card > :first-child {
	margin-top: 0px;
}
.obb-card > :last-child {
	margin-bottom: 0px;
}
.obb-content .obb-title {
	line-height: 1.2;
	margin-top: 0px;
	margin-bottom: 0px;
}
.obb-content .obb-title a {
	text-decoration: none;
}
.obb-content .obb-title a:hover {
	text-decoration: underline;
}
.obb-content .obb-text {
	position: relative;
	z-index: 6;
}
.obb-content .obb-excerpt {
	line-height: 1.65;
}
.obb-content .obb-excerpt:last-child > :last-child {
	margin-bottom: 0px;
}
.obb-content .obb-button a,
.obb-content .obb-button a:hover {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}
.obb-content .post-edit-link {
	margin-bottom: 0px;
}
.obb-pagination {
	display: inline-block;
	text-align: center;
	width: 100%;
}
.obb-pagination .pagination {
	float: none;
	display: block;
	width: 100%;
	font-weight: bold;
	text-align: center;
	line-height: 36px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 12px auto;
	padding: 0px;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.12);
	overflow: hidden;
	z-index: 7;
}
.obb-pagination .pagination .page-numbers {
	float: left;
	background: #ffffff;
	color: #666666;
	min-height: 36px;
	min-width: 36px;
	line-height: 36px;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	border-radius: 0px;
	box-shadow: none;
	border-left: 1px solid #dddddd;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
	border-right: none;
	border-top: none;
	border-bottom: none;
}
.obb-pagination .pagination .page-numbers:first-child {
	border-left: none;
}
.obb-pagination .pagination .page-numbers:hover,
.obb-pagination .pagination .page-numbers:active,
.obb-pagination .pagination .page-numbers.current {
	background: #eeeeee;
	color: #333333;
	min-height: 36px;
	min-width: 36px;
	line-height: 36px;
	padding: 0px;
	box-shadow: none;
}
.organic-block .obb-filter-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap-reverse;
	margin-top: 24px;
	margin-bottom: 24px;
}
.obb-filter-buttons,
.obb-filter-search {
	margin-top: 6px;
	margin-bottom: 6px;
}
.obb-filter-buttons {
	display: flex;
	flex-wrap: wrap;
}
.obb-filter-nav .obb-button {
	margin: 4px;
	border: none;
}
.obb-filter-nav .obb-button:first-child {
	margin-left: 0px;
}
.obb-filter-search input[type="text"] {
	background: #ffffff;
	width: 100%;
	min-width: 180px;
	margin: 0px;
	padding: 6px 8px;
	box-sizing: border-box;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
}
.organic-block .sharedaddy {
	display: none;
}

@media screen and (max-width: 768px) {
	.obb-filter-nav {
		display: block;
	}
	.obb-filter-buttons {
		font-size: 0.9rem;
		max-width: 100%;
		margin-bottom: 12px;
	}
	.obb-filter-search {
		max-width: 100%;
		margin-bottom: 12px;
	}
}

/************************************************
	Flexslider
************************************************/

.obb-flexslider {
	/* overrides dynamic height */
	/* height: 100% !important; */
	margin: 0;
	padding: 0;
	box-sizing: content-box;
}
.obb-flexslider .preloader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -16px;
	margin-top: -16px;
	border-bottom: 3px solid #dddddd;
	border-left: 3px solid #dddddd;
	border-right: 3px solid #aaaaaa;
	border-top: 3px solid #aaaaaa;
	border-radius: 100%;
	height: 32px;
	width: 32px;
	-webkit-animation: spin .6s infinite linear;
	-moz-animation: spin .6s infinite linear;
	-ms-animation: spin .6s infinite linear;
	-o-animation: spin .6s infinite linear;
	animation: spin .6s infinite linear;
	z-index: 8;
}
.obb-flexslider.loading {
	min-height: 480px;
}
.obb-flexslider.loading li {
	display: none;
}
.obb-flexslider ul,
.obb-flexslider li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.obb-flexslider .flex-viewport {
	display: block;
}
.obb-flexslider .slides {
	display: flex;
	position: relative;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	zoom: 1;
}
.obb-flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
}
.obb-flexslider .slides li {
	position: relative;
	min-height: 280px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin: 0;
	padding: 0;
}
.flex-pauseplay span {
	text-transform: capitalize;
}
.obb-multi-posts-slide .obb-bg-overlay,
.obb-multi-posts-slide .obb-flexslider .slides li {
	padding: 12px;
	background-clip: content-box;
}
.obb-multi-posts-slide .obb-bg-overlay {
	box-sizing: border-box;
}
.obb-multi-posts-slide .obb-flexslider .obb-card {
	padding: 24px;
}
.obb-multi-posts-slide .obb-flexslider[data-per-slide="4"] .obb-card,
.obb-multi-posts-slide .obb-flexslider[data-per-slide="5"] .obb-card {
	padding: 18px;
}
.obb-multi-posts-slide .obb-flexslider .obb-aligner.obb-content-layout-overlay .obb-content {
	margin: 36px;
}
.obb-multi-posts-slide .obb-flexslider .flex-control-nav {
	bottom: 24px;
}

/* Clearfix for the .slides element */
.slides:after {
	content: "\0020";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
html[xmlns] .slides {
	display: block;
}
* html .slides {
	height: 1%;
}

/* No JavaScript Fallback */
.no-js .slides > li:first-child {
	display: block;
}

/* Caption style */
.flex-caption {
	background: none;
	-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
	zoom: 1;
}
.flex-caption {
	background: rgba(0, 0, 0, 0.3);
	color: #FFFFFF;
	width: 96%;
	padding: 2%;
	margin: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Direction Nav */

.obb-flexslider ul.flex-direction-nav {
	height: 0;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.obb-flexslider .flex-direction-nav li {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.obb-flexslider .flex-direction-nav li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	font-size: 32px;
	line-height: 36px;
	height: 36px;
	width: 36px;
	text-decoration: none;
	margin-top: -18px;
	opacity: 1;
	position: absolute;
	top: 50%;
	padding: 0px;
	cursor: pointer;
	overflow: visible;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	z-index: 8;
	box-shadow: none;
}
.obb-flexslider .flex-direction-nav li a svg {
	max-height: 32px;
}
.obb-flexslider .flex-direction-nav .flex-next {
	right: 18px;
	text-align: center;
}
.obb-flexslider .flex-direction-nav .flex-prev {
	left: 18px;
	text-align: center;
}
.obb-flexslider .flex-direction-nav .flex-next svg,
.obb-flexslider .flex-direction-nav .flex-prev svg {
	fill: #999999;
}
.obb-flexslider .flex-direction-nav .flex-prev:hover,
.obb-flexslider .flex-direction-nav .flex-next:hover {
	text-decoration: none;
}
.obb-flexslider .flex-direction-nav .flex-prev:hover svg,
.obb-flexslider .flex-direction-nav .flex-next:hover svg {
	fill: #ffffff;
}
.obb-flexslider .flex-direction-nav a.flex-disabled {
	opacity: 0;
}

/* Control Nav */

.obb-flexslider .flex-control-nav {
	position: absolute;
	bottom: 18px;
	left: 50%; right: auto;
	transform: translateX(-50%);
	width: auto;
	line-height: 0;
	margin: 0px;
	padding: 0px;
	z-index: 9;
}
.obb-flexslider .flex-control-nav li {
	display: inline-block;
	margin: 0px;
	padding: 3px;
	border: none;
	zoom: 1;
}
.obb-flexslider .flex-control-nav li:first-child {
	margin: 0;
	border: none;
}
.obb-flexslider .flex-control-nav li a {
	width: 8px;
	height: 8px;
	display: block;
	cursor: pointer;
	text-indent: -999em;
	padding: 0px;
	border-radius: 8px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	box-sizing: content-box;
}
.obb-flexslider .flex-control-nav li a:hover {
	width: 8px;
	height: 8px;
	padding: 0px;
	background-color: rgba(255, 255, 255, 1);
	border-color: rgba(255, 255, 255, 0);
	border-width: 2px;
}
.obb-flexslider .flex-control-nav li a.flex-active {
	cursor: default;
	background-color: rgba(255, 255, 255, 1);
	border-color: rgba(255, 255, 255, 0);
	border-width: 2px;
}

/* Content Layout */

.obb-flexslider .obb-aligner.obb-content-layout-bottom {
	flex-direction: column-reverse;
}
.obb-flexslider .obb-aligner.obb-content-layout-top {
	flex-direction: column;
}
.obb-flexslider .obb-aligner.obb-content-layout-overlay .obb-content {
	margin: 48px;
}
.obb-no-content-bg .obb-flexslider .obb-aligner.obb-content-layout-overlay .obb-content {
	margin: 0;
}
.obb-flexslider .obb-aligner.obb-content-layout-top .obb-content,
.obb-flexslider .obb-aligner.obb-content-layout-bottom .obb-content {
	width: 100%;
	max-width: none;
	margin: 0px;
}
.obb-no-content-bg .obb-flexslider .obb-aligner.obb-content-layout-top .obb-slide-img,
.obb-no-content-bg .obb-flexslider .obb-aligner.obb-content-layout-bottom .obb-slide-img {
	display: none;
}

/* Style Minimal (Default) */

.obb-flexslider .obb-aligner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.obb-flexslider .obb-content {
	position: relative;
	max-width: 980px;
	box-sizing: border-box;
	z-index: 8;
}
.obb-flexslider .obb-card {
	padding: 36px;
}
.obb-flexslider .obb-content h4:not(:last-child) {
	margin-bottom: 24px;
}
.obb-flexslider .obb-slide-img {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	line-height: 0;
	height: 100%;
	width: 100%;
}
.obb-flexslider .obb-slide-img img {
	opacity: 0;
	max-height: 780px;
}
.obb-flexslider .obb-excerpt .sharedaddy,
.obb-flexslider .obb-excerpt .more-link {
	display: none;
}
.obb-flexslider .wp-block-button.obb-button {
	margin-top: 24px;
}

/* Style Modern */

.style-modern.obb-multi-posts-slide .obb-flexslider {
	padding: 12px 12px 36px 12px;
}
.style-modern .obb-flexslider .obb-aligner {
	border-radius: 3px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}
.style-modern .obb-flexslider .obb-content {
	border-radius: 3px;
}
.style-modern:not(.obb-multi-posts-slide) .obb-flexslider .obb-bg-overlay {
	border-radius: 8px;
}
.style-modern .obb-flexslider .slides li {
	border-radius: 8px;
	box-sizing: border-box;
}
.style-modern .obb-flexslider .flex-direction-nav li a {
	background-color: #ffffff;
	font-size: 16px;
	line-height: 32px;
	height: 32px;
	width: 32px;
	border-radius: 2px;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
}
.style-modern .obb-flexslider .flex-direction-nav li a svg {
	max-height: 16px;
}
.style-modern.obb-multi-posts-slide .obb-flexslider .flex-direction-nav li a {
	margin-top: -16px;
}
.style-modern .obb-flexslider .flex-direction-nav li a:hover svg {
	fill: #000000;
}
.style-modern .obb-flexslider .flex-direction-nav .flex-next {
	right: 36px;
}
.style-modern .obb-flexslider .flex-direction-nav .flex-prev {
	left: 36px;
}
.style-modern .obb-flexslider .flex-control-nav {
	bottom: 24px;
	left: 50%; right: auto;
	transform: translateX(-50%);
}
.style-modern .obb-flexslider .flex-control-nav li a {
	background: none;
	width: 16px;
	height: 12px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 3px solid rgba(255, 255, 255, 0.24);
	border-radius: 0px;
}
.style-modern .obb-flexslider .flex-control-nav li a:hover,
.style-modern .obb-flexslider .flex-control-nav li a.flex-active {
	background: none;
	border-color: rgba(255, 255, 255, 0.6);
}
.style-modern.obb-multi-posts-slide .obb-flexslider .flex-control-nav {
	bottom: 18px;
}
.style-modern.obb-multi-posts-slide .obb-flexslider .flex-control-nav li a {
	border-color: #dddddd;
}
.style-modern.obb-multi-posts-slide .obb-flexslider .flex-control-nav li a:hover,
.style-modern.obb-multi-posts-slide .obb-flexslider .flex-control-nav li a.flex-active {
	border-color: #aaaaaa;
}

/* Style Framed */

.style-framed.obb-multi-posts-slide .obb-flexslider {
	padding: 12px 12px 36px 12px;
}
.style-framed .obb-flexslider .flex-viewport {
	height: auto !important;
}
.style-framed .obb-flexslider .obb-aligner {
	background: #ffffff;
	padding: 18px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	overflow: hidden;
}
.style-framed .obb-flexslider .obb-aligner.obb-content-layout-overlay {
	padding: 0;
	background: none;
}
.style-framed .obb-flexslider .obb-align-content-position-top .obb-card,
.style-framed .obb-flexslider .obb-align-content-position-bottom .obb-card {
	padding: 24px;
}
.style-framed .obb-flexslider .obb-bg-overlay {
	margin-top: 31px;
	margin-left: 31px;
	max-width: calc(100% - 62px);
	max-height: calc(100% - 62px);
}
.style-framed .obb-flexslider .slides li {
	background-clip: content-box;
	border-radius: 8px;
	box-sizing: border-box;
}
.style-framed .obb-flexslider .flex-direction-nav li a {
	background-color: #ffffff;
	font-size: 16px;
	line-height: 32px;
	height: 32px;
	width: 32px;
	border-radius: 2px;
	box-shadow: none;
}
.style-framed .obb-flexslider .flex-direction-nav li a svg {
	max-height: 16px;
}
.style-framed.obb-multi-posts-slide .obb-flexslider .flex-direction-nav li a {
	margin-top: -16px;
}
.style-framed .obb-flexslider .flex-direction-nav li a:hover svg {
	fill: #000000;
}
.style-framed .obb-flexslider .flex-direction-nav .flex-next {
	right: 48px;
}
.style-framed .obb-flexslider .flex-direction-nav .flex-prev {
	left: 48px;
}
.style-framed .obb-flexslider .flex-control-nav {
	bottom: 24px;
	left: 50%; right: auto;
	transform: translateX(-50%);
}
.style-framed .obb-flexslider .flex-control-nav li a {
	background: none;
	width: 16px;
	height: 12px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 3px solid rgba(255, 255, 255, 0.24);
	border-radius: 0px;
}
.style-framed .obb-flexslider .flex-control-nav li a:hover,
.style-framed .obb-flexslider .flex-control-nav li a.flex-active {
	background: none;
	border-color: rgba(255, 255, 255, 0.6);
}
.style-framed.obb-multi-posts-slide .obb-flexslider .flex-control-nav {
	bottom: 18px;
}
.style-framed.obb-multi-posts-slide .obb-flexslider .flex-control-nav li a {
	border-color: #dddddd;
}
.style-framed.obb-multi-posts-slide .obb-flexslider .flex-control-nav li a:hover,
.style-framed.obb-multi-posts-slide .obb-flexslider .flex-control-nav li a.flex-active {
	border-color: #aaaaaa;
}

/* Style Rounded */

.style-rounded .obb-flexslider .slides li {
	border-radius: 6px;
	overflow: hidden;
}
.style-rounded .obb-flexslider .flex-viewport {
	border-radius: 6px;
}
.style-rounded .obb-flexslider .obb-content-layout-overlay .obb-content {
	border-radius: 6px;
}
.style-rounded .obb-flexslider .flex-direction-nav li a {
	background-color: #ffffff;
	height: 48px;
	width: 48px;
	line-height: 48px;
	font-size: 24px;
	margin-top: -24px;
	border-radius: 50%;
}
.style-rounded .obb-flexslider .flex-direction-nav li a svg {
	max-height: 24px;
}
.style-rounded .obb-flexslider .flex-direction-nav li a:hover svg {
	fill: #000000;
}
.style-rounded .obb-flexslider .flex-direction-nav .flex-prev {
	left: 52px;
}
.style-rounded .obb-flexslider .flex-direction-nav .flex-next {
	right: 52px;
}
.style-rounded .obb-flexslider .flex-control-nav {
	bottom: -28px;
	left: 50%; right: auto;
	transform: translateX(-50%);
}
.style-rounded .obb-flexslider .flex-control-nav li a {
	border-color: #dddddd;
}
.style-rounded .obb-flexslider .flex-control-nav li a:hover,
.style-rounded .obb-flexslider .flex-control-nav li a.flex-active {
	border-color: #cccccc;
	background-color: #cccccc;
}

/* Style Bordered */

.style-bordered.obb-multi-posts-slide {
	padding-bottom: 24px;
}
.style-bordered .obb-flexslider {
	border-top: 18px solid #ffffff;
	border-bottom: 18px solid #ffffff;
	border-left: 12px solid #ffffff;
	border-right: 12px solid #ffffff;
}
.style-bordered .obb-flexslider .slides li {
	border-left: 6px solid #ffffff;
	border-right: 6px solid #ffffff;
	box-sizing: border-box;
}
.style-bordered .obb-flexslider .flex-direction-nav li a {
	background-color: transparent;
	font-size: 28px;
	line-height: 34px;
	box-shadow: none;
	margin-top: -36px;
	border: 3px solid #ffffff;
	border-radius: 2px;
	box-sizing: content-box;
}
.style-bordered .obb-flexslider .flex-direction-nav li a:hover {
	background-color: #000000;
	transform: scale(1.1);
}
.style-bordered .obb-flexslider .flex-direction-nav li a svg {
	fill: #ffffff;
	font-size: 18px;
	max-height: 18px;
	vertical-align: middle;
}
.style-bordered .obb-flexslider .flex-direction-nav .flex-prev {
	left: 32px;
}
.style-bordered .obb-flexslider .flex-direction-nav .flex-next {
	right: 32px;
}
.style-bordered .obb-flexslider .flex-control-nav {
	bottom: 36px;
	left: 50%; right: auto;
	transform: translateX(-50%);
}
.style-bordered.obb-multi-posts-slide .obb-flexslider .flex-control-nav {
	bottom: 6px;
}
.style-bordered .obb-flexslider .flex-control-nav li a {
	border-color: #dddddd;
	border-radius: 0px;
}
.style-bordered .obb-flexslider .flex-control-nav li a:hover,
.style-bordered .obb-flexslider .flex-control-nav li a.flex-active {
	border-color: #cccccc;
	background-color: #cccccc;
	transform: scale(1.2);
}

.style-modern .obb-flexslider .obb-aligner.obb-content-layout-overlay .obb-content,
.style-framed .obb-flexslider .obb-aligner.obb-content-layout-overlay .obb-content {
	border-radius: 3px;
}

/* Mobile Styles */

@media screen and (max-width: 1024px) {
	.style-framed .obb-flexslider .flex-direction-nav .flex-next {
		right: 16px;
	}
	.style-framed .obb-flexslider .flex-direction-nav .flex-prev {
		left: 16px;
	}
	.style-bordered .obb-flexslider .slides li {
		border-left: none;
		border-right: none;
	}
	.obb-flexslider .obb-aligner.obb-content-layout-overlay .obb-content {
		margin: 36px;
	}
	.obb-multi-posts-slide .obb-flexslider .slides li {
		padding: 0px;
	}
	.obb-multi-posts-slide .obb-flexslider .obb-bg-overlay,
	.obb-multi-posts-slide.style-modern .obb-flexslider .obb-bg-overlay {
		margin-top: 0px;
		margin-left: 0px;
		max-width: 100%;
		max-height: 100%;
	}
	.style-rounded .obb-flexslider .flex-direction-nav .flex-prev {
		left: 24px;
	}
	.style-rounded .obb-flexslider .flex-direction-nav .flex-next {
		right: 24px;
	}
	.style-modern.obb-slideshow {
		box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.24);
	}
	.style-modern .obb-flexslider .obb-bg-overlay {
		margin-top: 0;
		margin-left: 0;
		max-width: none;
		max-height: none;
	}
	.style-modern .obb-flexslider .slides li {
		padding: 0;
		background-clip: border-box;
		border-radius: 3px;
	}
	.style-modern .obb-flexslider .flex-direction-nav .flex-prev {
		left: 12px;
	}
	.style-modern .obb-flexslider .flex-direction-nav .flex-next {
		right: 12px;
	}
	.style-modern.obb-multi-posts-slide .obb-flexslider .flex-control-nav {
		bottom: 12px;
	}
	.style-modern.obb-multi-posts-slide .obb-flexslider .slides li {
		border-radius: 3px;
	}
}

/************************************************
	Style Presets
************************************************/

/* Modern Style */

.obb-style-modern .obb-content {
	border-radius: 3px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	overflow: hidden;
}

/* Rounded Style */

.obb-style-rounded .obb-content {
	border-radius: 12px;
	overflow: hidden;
}

/* Bordered Style */

.obb-style-bordered .obb-content {
	border: 6px solid rgba(0, 0, 0, 0.08);
}
.obb-style-bordered .obb-featured-img {
	margin: 12px;
	box-sizing: content-box;
}

/* Angular Style */

.obb-style-angular .obb-featured-img {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}
.obb-style-angular.obb-orientation-horizontal .obb-featured-img {
	clip-path: polygon(0 0, 85% 0%, 100% 100%, 0% 100%);
}

/* Orientation Style */

.obb-orientation-horizontal .obb-content {
	display: flex;
}
.obb-orientation-horizontal .obb-card {
	width: 100%;
}
.obb-orientation-horizontal .obb-featured-img {
	width: 100%;
	max-width: 50%;
}
.obb-orientation-horizontal .obb-featured-img .obb-hide-img {
	margin: 0px;
	opacity: 0;
}

/************************************************
	Posts Block
************************************************/

.obb-posts .obb-post-container {
	display: flex;
	flex-wrap: wrap;
}
.obb-posts .obb-post-container .obb-content {
	position: relative;
	height: 100%;
}
.obb-posts .obb-post-container .obb-columns-1 .obb-content {
	height: auto;
}
.obb-posts .obb-img-and-title,
.obb-posts .obb-title-and-meta {
	display: flex;
	flex-direction: column;
}
.obb-posts .obb-excerpt-and-more,
.obb-posts .obb-title-and-meta {
	padding-left: 24px;
	padding-right: 24px;
	overflow: hidden;
}
.obb-posts .obb-excerpt-and-more > :first-child,
.obb-posts .obb-title-and-meta > :first-child {
	margin-top: 24px;
}
.obb-posts .obb-excerpt-and-more > :last-child {
	margin-bottom: 24px;
}
.obb-posts .obb-post-info {
	display: flex;
	align-items: center;
	font-size: 0.75rem;
	line-height: 1.2;
	margin-top: 8px;
	margin-bottom: 8px;
}
.obb-posts .obb-author-info {
	display: flex;
	align-items: center;
	margin-right: 4px;
}
.obb-posts .obb-author-avatar {
	display: inline-block;
	line-height: 0;
	margin-right: 6px;
	padding: 2px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	overflow: hidden;
}
.obb-posts .obb-post-info > :first-child span {
	text-transform: capitalize;
}
.obb-posts .obb-post-info .posted-on {
	opacity: 0.6;
}
.obb-post-meta {
	font-size: 0.7rem;
	line-height: 1.4;
	margin-top: 12px;
	margin-bottom: 12px;
}
.obb-post-meta a {
	display: inline-block;
	text-decoration: none !important;
	padding: 4px 8px;
	border-radius: 2px;
	border: 1px solid;
}
.obb-post-meta .obb-separator {
	margin-left: 4px;
	margin-right: 4px;
	opacity: 0.4;
}
.obb-post-meta > :nth-child(2) {
	margin-left: 4px;
	padding-left: 8px;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.obb-content .more-link,
.obb-content .more-link-wrapper {
	display: none;
}
.obb-content .obb-title-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.obb-content .obb-title-price .obb-price,
.obb-content .obb-title-price h4.obb-title {
	margin-bottom: 0;
}
.obb-content .obb-title-price .obb-title {
	margin-right: 18px;
}
.obb-content .obb-price {
	display: block;
	margin-bottom: 12px;
}
.obb-content .obb-featured-img .obb-price {
	position: absolute;
	top: 18px; right: 18px;
	background: #000000;
	color: #ffffff;
	font-size: 1rem;
	letter-spacing: 0px;
	padding: 4px 12px;
	border-radius: 2px;
}

/* Alternate Styles */

.obb-posts.is-style-obb-post-layout-secondary .obb-img-and-title {
	flex-direction: column-reverse;
}
.obb-posts.is-style-obb-post-layout-secondary .obb-title-and-meta > :last-child {
	margin-bottom: 24px;
}
.obb-posts.obb-orientation-horizontal .obb-featured-img {
	width: 100%;
	height: 100%;
	max-width: none;
}
.obb-posts.obb-orientation-horizontal .obb-img-and-title,
.obb-posts.obb-orientation-horizontal .obb-excerpt-and-more {
	flex-basis: 50%;
}
.obb-posts.obb-orientation-horizontal .obb-excerpt-and-more {
	padding: 12px 36px;
	box-sizing: border-box;
}
.obb-posts.obb-orientation-horizontal .obb-title-and-meta {
	margin-top: 0;
	padding-left: 0;
	padding-right: 0;
}
.obb-posts.obb-orientation-horizontal .obb-title-and-meta + .obb-button {
	margin-top: 24px;
}
.obb-posts.obb-orientation-horizontal.is-style-obb-post-layout-secondary .obb-title-and-meta {
	flex-direction: column-reverse;
}
.obb-posts.obb-orientation-horizontal.is-style-obb-post-layout-secondary .obb-title-and-meta > :first-child {
	margin-top: 12px;
  margin-bottom: 8px;
}
.obb-posts.obb-orientation-horizontal.is-style-obb-post-layout-secondary .obb-title-and-meta > :last-child {
	margin-bottom: 8px;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
	.obb-post-container {
		display: block;
	}
	.obb-posts.obb-orientation-horizontal .obb-content {
		flex-direction: column;
	}
	.obb-posts.obb-orientation-horizontal .obb-img-and-title,
	.obb-posts.obb-orientation-horizontal .obb-excerpt-and-more {
		flex-basis: 100%;
	}
}

/************************************************
	Link Container Block
************************************************/

.obb-link {
	display: block;
	position: relative;
	text-decoration: none;
	box-sizing: border-box;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
}
.obb-link-overlay {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	width: 100%;
	height: 100%;
	z-index: 8;
}
.obb-link-content {
	position: relative;
	box-sizing: border-box;
	z-index: 6;
}
.obb-link-content a {
	text-decoration: none;
	pointer-events: none;
	cursor: default;
}

/************************************************
	Width Container Block
************************************************/

.organic-block.obb-width {
	margin-left: auto;
	margin-right: auto;
}
.organic-block.obb-width div {
  border-radius: inherit;
}

/************************************************
	Position Container Block
************************************************/

.obb-position {
	position: relative;
	box-sizing: border-box;
	transform: translateY(0);
	z-index: 8;
}

@media screen and (max-width: 768px) {
	.obb-position.obb-mobile-reset {
		transform: scale(1) !important;
		left: auto !important;
		right: auto !important;
		margin-top: auto !important;
		margin-bottom: auto !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

/************************************************
	Callout Block
************************************************/

.obb-callout {
	position: relative;
	padding: 36px;
	margin-top: 24px;
	margin-bottom: 24px;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 8;
}
.obb-callout .wp-block-columns:last-child {
	margin-bottom: 0;
}
.obb-callout .wp-block-column :last-child {
	margin-bottom: 0;
}
.obb-callout .wp-block-column :first-child {
	margin-top: 0;
}

/************************************************
	Featured Content Block
************************************************/

.obb-featured {
	display: flex;
	flex-direction: column;
	position: relative;
	margin-top: 24px;
	margin-bottom: 24px;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 6;
}
/* .obb-featured:hover {
	z-index: 9 !important;
} */
.obb-featured .obb-featured-content {
	padding: 36px;
}
.obb-featured .obb-featured-content > :last-child {
	margin-bottom: 0 !important;
}
.obb-featured .obb-featured-content > :first-child {
	margin-top: 0 !important;
}
.obb-featured .obb-featured-content .wp-block-buttons:last-child .wp-block-button,
.obb-featured .obb-featured-content .wp-block-buttons:last-child .wp-block-button__link {
	margin-bottom: 0px;
}
.obb-featured.obb-orientation-horizontal,
.obb-featured.obb-orientation-horizontal .block-editor-inner-blocks > .block-editor-block-list__layout {
	display: flex;
	align-items: center;
	flex-direction: row;
}
.obb-featured .obb-featured-cover {
	display: flex;
	margin: 0;
}
.obb-featured.obb-orientation-horizontal .obb-featured-cover {
	flex-basis: 40%;
}
.obb-featured.obb-orientation-horizontal .obb-featured-content {
	flex-basis: 60%;
}

@media screen and (max-width: 768px) {
	.obb-featured.obb-mobile-reset {
		transform: scale(1) !important;
	}
}

/************************************************
	Icon Box Block
************************************************/

.obb-icon-box {
	display: flex;
	flex-direction: column;
	position: relative;
	margin-top: 24px;
	margin-bottom: 24px;
	padding: 36px;
	box-sizing: border-box;
	overflow: hidden;
}
.obb-icon-box .obb-icon-img {
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 36px;
	padding-right: 36px;
	padding-bottom: 24px;
}
.obb-icon-box .obb-icon-content > :last-child {
	margin-bottom: 0 !important;
}
.obb-icon-box .obb-icon-content > :first-child {
	margin-top: 0 !important;
}
.obb-icon-box .obb-icon-content .wp-block-buttons:last-child .wp-block-button,
.obb-icon-box .obb-icon-content .wp-block-buttons:last-child .wp-block-button__link {
	margin-bottom: 0px;
}
.obb-icon-box.obb-orientation-horizontal,
.obb-icon-box.obb-orientation-horizontal .block-editor-inner-blocks > .block-editor-block-list__layout {
	display: flex;
	flex-direction: row;
}
.obb-icon-box.obb-orientation-vertical .obb-icon-img {
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 24px;
}
.obb-icon-box.obb-orientation-horizontal .obb-icon-img {
	flex: 0 0 auto;
	padding-right: 24px;
	padding-left: 0;
	padding-bottom: 0;
}
.obb-icon-box.obb-orientation-horizontal .obb-icon-content {
	flex-basis: 100%;
}

/* Vertical Alignment */

.obb-icon-box.obb-orientation-horizontal.obb-vertical-align-top,
.obb-icon-box.obb-orientation-horizontal.obb-vertical-align-top .block-editor-inner-blocks > .block-editor-block-list__layout {
	align-items: flex-start;
}
.obb-icon-box.obb-orientation-horizontal.obb-vertical-align-center,
.obb-icon-box.obb-orientation-horizontal.obb-vertical-align-center .block-editor-inner-blocks > .block-editor-block-list__layout {
	align-items: center;
}
.obb-icon-box.obb-orientation-horizontal.obb-vertical-align-bottom,
.obb-icon-box.obb-orientation-horizontal.obb-vertical-align-bottom .block-editor-inner-blocks > .block-editor-block-list__layout {
	align-items: flex-end;
}

@media screen and (max-width: 768px) {
	.obb-icon-box.obb-orientation-horizontal .obb-icon-img {
		max-width: 90px;
	}
}

/************************************************
	Portfolio Block
************************************************/

.obb-portfolio-item {
	display: flex;
	position: relative;
	line-height: 0;
}
.obb-portfolio-item .obb-content {
	display: flex;
	align-items: center;
	position: absolute;
	line-height: 1.4;
	width: 100%;
	height: 100%;
	padding: 24px;
	border: none;
	border-radius: 0;
	box-shadow: none;
	box-sizing: border-box;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	opacity: 0;
}
.obb-portfolio-item:hover .obb-content,
.obb-portfolio-item .obb-content:hover,
.obb-portfolio-item:hover .obb-pin-link {
	opacity: 1;
}
.obb-portfolio-item .obb-content .obb-categories {
	margin: 8px 0 0 0;
}
.obb-portfolio-item .obb-content .obb-categories > a {
	font-size: 75%;
	text-decoration: none;
	opacity: 0.6;
}
.obb-portfolio-item .obb-content .obb-categories > a {
	opacity: 1;
}
.obb-portfolio-item .obb-portfolio-link,
.obb-portfolio-item .obb-portfolio-link:hover,
.obb-portfolio-item:hover .obb-portfolio-link {
	text-decoration: none;
}
.obb-portfolio-item .obb-featured-img {
	max-width: 100%;
}
.obb-portfolio-item .obb-featured-img img {
	width: 100%;
	height: auto;
}
.obb-portfolio-item .obb-pin-link {
	display: block;
	position: absolute !important;
	top: 12px; right: 12px;
	line-height: 0;
	margin: 0px;
	padding: 6px;
	z-index: 8 !important;
	cursor: pointer;
	overflow: hidden;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	opacity: 0;
}
.obb-portfolio-item .obb-pin-link:hover {
	transform: scale(1.2);
}
.obb-portfolio-item .obb-pin-icon {
	position: relative;
	pointer-events: none;
	max-width: 18px;
}
.obb-columns-3 .obb-portfolio-item .obb-excerpt {
	font-size: 90%;
}
.obb-columns-4 .obb-portfolio-item .obb-excerpt,
.obb-columns-5 .obb-portfolio-item .obb-excerpt,
.obb-columns-6 .obb-portfolio-item .obb-excerpt {
	font-size: 80%;
}
.obb-portfolio-item .obb-content .obb-excerpt p {
	margin-top: 8px;
	margin-bottom: 8px;
}
.obb-masonry-off .obb-masonry-container {
	height: auto !important;
}

/* Content Layout */

.obb-content-position-below-image .obb-portfolio-item {
	display: flex;
	flex-direction: column-reverse;
}
.obb-content-position-above-image .obb-portfolio-item {
	display: flex;
	flex-direction: column;
}
.obb-content-position-above-image .obb-portfolio-item .obb-content,
.obb-content-position-below-image .obb-portfolio-item .obb-content {
	display: block;
	position: relative;
	height: auto;
	padding: 18px 0px;
	opacity: 1;
}
.obb-content-position-top .obb-portfolio-item .obb-pin-link,
.obb-content-position-above-image .obb-portfolio-item .obb-pin-link {
	top: auto;
	bottom: 12px;
}
.obb-content-position-above-image.obb-style-modern .obb-portfolio-item .obb-content,
.obb-content-position-below-image.obb-style-modern .obb-portfolio-item .obb-content,
.obb-content-position-above-image.obb-style-rounded .obb-portfolio-item .obb-content,
.obb-content-position-below-image.obb-style-rounded .obb-portfolio-item .obb-content,
.obb-content-position-above-image.obb-style-bordered .obb-portfolio-item .obb-content,
.obb-content-position-below-image.obb-style-bordered .obb-portfolio-item .obb-content {
	padding-left: 18px;
	padding-right: 18px;
}

/* Content Alignment */

.obb-portfolio.obb-position-center-center .obb-content {
	align-items: center;
	justify-content: center;
}
.obb-portfolio.obb-position-center-left .obb-content {
	align-items: center;
	justify-content: flex-start;
}
.obb-portfolio.obb-position-center-right .obb-content {
	align-items: center;
	justify-content: flex-end;
}

.obb-portfolio.obb-position-top-left .obb-content {
	align-items: flex-start;
	justify-content: flex-start;
}
.obb-portfolio.obb-position-top-center .obb-content {
	align-items: flex-start;
	justify-content: center;
}
.obb-portfolio.obb-position-top-right .obb-content {
	align-items: flex-start;
	justify-content: flex-end;
}

.obb-portfolio.obb-position-bottom-left .obb-content {
	align-items: flex-end;
	justify-content: flex-start;
}
.obb-portfolio.obb-position-bottom-center .obb-content {
	align-items: flex-end;
	justify-content: center;
}
.obb-portfolio.obb-position-bottom-right .obb-content {
	align-items: flex-end;
	justify-content: flex-end;
}

/* Style Presets */

.obb-portfolio.obb-style-modern .obb-content {
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}
.obb-portfolio.obb-style-modern .obb-content .obb-portfolio-item {
	border-radius: 3px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	overflow: hidden;
}

/************************************************
	Content Slideshow Block
************************************************/

.organic-block-content-slideshow {
	position: relative;
	min-height: 240px;
}
.obb-slideshow .obb-excerpt p {
	margin: 18px 0px;
}

/* Content Alignment */

.obb-slideshow.obb-position-center-center .obb-aligner {
	align-items: center;
	justify-content: center;
}
.obb-slideshow.obb-position-center-left .obb-aligner {
	align-items: center;
	justify-content: flex-start;
}
.obb-slideshow.obb-position-center-right .obb-aligner {
	align-items: center;
	justify-content: flex-end;
}

.obb-slideshow.obb-position-top-left .obb-aligner {
	align-items: flex-start;
	justify-content: flex-start;
}
.obb-slideshow.obb-position-top-center .obb-aligner {
	align-items: flex-start;
	justify-content: center;
}
.obb-slideshow.obb-position-top-right .obb-aligner {
	align-items: flex-start;
	justify-content: flex-end;
}

.obb-slideshow.obb-position-bottom-left .obb-aligner {
	align-items: flex-end;
	justify-content: flex-start;
}
.obb-slideshow.obb-position-bottom-center .obb-aligner {
	align-items: flex-end;
	justify-content: center;
}
.obb-slideshow.obb-position-bottom-right .obb-aligner {
	align-items: flex-end;
	justify-content: flex-end;
}

/************************************************
	Testimonial Block
************************************************/

.organic-block-testimonials {
	position: relative;
	padding: 0 48px;
	box-sizing: border-box;
}
/* .organic-block-testimonials .obb-flexslider .flex-viewport {
	height: auto !important;
} */
.organic-block-testimonials[data-height="false"] .obb-flexslider .slides {
	display: flex;
	align-items: center;
}
.organic-block-testimonials .obb-flexslider .slides li {
	min-height: auto;
}
.organic-block-testimonials .obb-featured-img {
	max-width: 480px;
	line-height: 0;
	margin: 24px auto 0px;
}
.organic-block-testimonials .obb-featured-img img {
	height: auto;
	width: 100%;
}
.organic-block-testimonials .obb-flexslider .obb-aligner {
	flex-direction: column;
	justify-content: flex-start;
	height: auto;
	margin: 12px;
}
.organic-block-testimonials .obb-flexslider .obb-content {
	display: block;
	max-width: none;
	margin: 0px;
	padding: 36px;
	box-sizing: border-box;
}
.organic-block-testimonials .obb-flexslider .obb-content > :first-child {
	margin-top: 0;
}
.organic-block-testimonials .obb-flexslider .obb-content > :last-child {
	margin-bottom: 0;
}
.organic-block-testimonials .obb-testimonial-icon {
	display: block;
	margin-bottom: -12px;
}
.organic-block-testimonials .obb-testimonial-icon i {
	font-style: normal;
}
.organic-block-testimonials .obb-excerpt,
.organic-block-testimonials .obb-excerpt.wp-block-quote {
	border: none;
	margin: 24px 0px;
	padding: 0;
}
.organic-block-testimonials .obb-excerpt p:first-child {
	margin-top: 0;
}
.organic-block-testimonials .obb-excerpt p:last-child {
	margin-bottom: 0;
}
.organic-block-testimonials .obb-title {
	font-size: 90%;
	font-style: italic;
	opacity: 0.8;
}
.organic-block-testimonials .obb-title::before {
	content: '\2014 ';
}

/* Content Position */

.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-left {
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: center;
	padding: 36px;
}
.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-right {
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	padding: 36px;
}
.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-top {
	flex-direction: column-reverse;
}
.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-left .obb-content {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 24px;
}
.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-right .obb-content {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 24px;
	padding-right: 0;
}
.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-left .obb-featured-img,
.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-right .obb-featured-img {
	margin: 0px 6px;
}
.organic-block-testimonials .obb-flexslider .obb-aligner.obb-align-content-position-top .obb-featured-img {
	margin-top: 0;
	margin-bottom: 36px;
}

/* Slideshow Navigation */

.organic-block-testimonials .obb-flexslider .flex-direction-nav .flex-prev,
.organic-block-testimonials.style-modern .obb-flexslider .flex-direction-nav .flex-prev,
.organic-block-testimonials.style-rounded .obb-flexslider .flex-direction-nav .flex-prev {
	left: 12px;
}
.organic-block-testimonials .obb-flexslider .flex-direction-nav .flex-next,
.organic-block-testimonials.style-modern .obb-flexslider .flex-direction-nav .flex-next,
.organic-block-testimonials.style-rounded .obb-flexslider .flex-direction-nav .flex-next {
	right: 12px;
}
.organic-block-testimonials .obb-flexslider .flex-control-nav {
	bottom: 24px;
	left: 50%; right: auto !important;
	transform: translateX(-50%);
}
.organic-block-testimonials .obb-flexslider .flex-control-nav li a,
.organic-block-testimonials.style-modern .obb-flexslider .flex-control-nav li a {
	border-color: #cccccc;
}
.organic-block-testimonials .obb-flexslider .flex-control-nav li a:hover,
.organic-block-testimonials .obb-flexslider .flex-control-nav li a.flex-active {
	background-color: #cccccc;
	border-color: #cccccc;
}
.organic-block-testimonials.style-modern .obb-flexslider .flex-control-nav li a:hover,
.organic-block-testimonials.style-modern .obb-flexslider .flex-control-nav li a.flex-active {
	background: none;
}

/* Style Modern */

.organic-block-testimonials.style-modern.obb-multi-posts-slide .obb-flexslider {
	padding: 0px;
}
.organic-block-testimonials.style-modern.obb-multi-posts-slide.obb-hide-content-bg .obb-flexslider .obb-aligner {
	border-radius: 0px;
	box-shadow: none;
	border: none;
}
.organic-block-testimonials.style-modern .obb-flexslider .obb-aligner {
	height: auto;
	border-radius: 3px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.organic-block-testimonials.style-modern .obb-flexslider .slides li {
	padding: 0px;
	border-radius: 0px;
}
.organic-block-testimonials.style-modern .obb-flexslider .flex-direction-nav a {
	border: 1px solid rgba(0, 0, 0, 0.08);
}
.organic-block-testimonials.style-modern.obb-multi-posts-slide .obb-flexslider .flex-control-nav {
	bottom: 24px;
}
.organic-block-testimonials.style-modern .obb-flexslider .flex-control-nav li a:hover,
.organic-block-testimonials.style-modern .obb-flexslider .flex-control-nav li a.flex-active {
	border-color: #666666;
}
.organic-block-testimonials.style-modern .obb-flexslider .obb-featured-img {
	background-clip: content-box;
	border-radius: 3px;
}
.organic-block-testimonials.style-modern .obb-flexslider .obb-featured-img img {
	background: #ffffff;
	padding: 8px;
	border-radius: 3px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.24);
	box-sizing: border-box;
}

/* Style Rounded */

.organic-block-testimonials.style-rounded {
	padding-right: 64px;
	padding-left: 64px;
}
.organic-block-testimonials.style-rounded .obb-flexslider {
	margin: 0px;
}
.organic-block-testimonials.style-rounded .obb-flexslider .obb-aligner {
	border-radius: 12px;
}
.organic-block-testimonials.style-rounded .obb-flexslider .flex-control-nav,
.organic-block-testimonials.style-rounded.obb-multi-posts-slide .obb-flexslider .flex-control-nav {
	bottom: 18px;
}
.organic-block-testimonials.style-rounded .obb-flexslider .obb-featured-img {
	background: none !important;
	background-clip: content-box;
	box-sizing: border-box;
	border-radius: 50%;
	overflow: hidden;
}
.organic-block-testimonials.style-rounded .obb-flexslider .obb-featured-img img {
	background: #ffffff;
	padding: 12px;
	box-sizing: border-box;
	border-radius: 50%;
}

/* Style Overlap */

.organic-block-testimonials.style-overlap .obb-flexslider .obb-featured-img {
	margin-top: -120px;
}
.organic-block-testimonials.style-overlap.style-modern .obb-flexslider .obb-aligner {
	overflow: visible;
}

@media screen and (max-width: 768px) {
	.organic-block-testimonials,
	.organic-block-testimonials.style-rounded {
		padding-left: 24px;
		padding-right: 24px;
	}
	.organic-block-testimonials .obb-excerpt p {
		font-size: 0.9rem;
	}
	.organic-block-testimonials .obb-flexslider .obb-content {
		padding-left: 24px;
		padding-right: 24px;
	}
}

/************************************************
	Header Block
************************************************/

.organic-header-block {
	width: 100%;
	height: auto;
}
.obb-header {
	width: 100%;
	position: relative;
	top: auto;
	box-sizing: border-box;
	transition: background-color .25s ease-out;
	z-index: 99;
}
.editor-styles-wrapper .obb-header a {
	pointer-events: none;
	cursor: pointer;
}
.obb-header .obb-header-container {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	z-index: 8;
}
.obb-header .obb-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	line-height: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 9;
}
.obb-header .obb-site-identity,
.obb-mobile-menu-container .obb-logo-title {
	display: flex;
	align-items: center;
}
.obb-site-title,
.obb-site-desc {
	line-height: 1.2;
	margin: 0;
	padding: 0;
}
.obb-site-logo {
	position: relative;
	margin: 0 auto;
}
.obb-site-title-tagline {
	margin: 0;
}
.obb-site-logo a {
	transition: opacity .25s ease-out;
}
.obb-site-logo .logo-primary {
	opacity: 1;
}
.obb-site-logo .logo-secondary {
	position: absolute;
	top: 0; left: 0;
	opacity: 0;
}
.obb-header-shadow {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.00));
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Conditionals */

.obb-header.position-fixed,
.obb-header.position-absolute {
	margin-top: 0px;
}
.admin-bar:not(.wp-admin) .obb-header.position-fixed {
	top: 32px;
}
.obb-hero-content > .obb-header.position-fixed,
.obb-hero-content > .obb-header.position-absolute,
.wp-block-cover__inner-container > .obb-header.position-absolute,
.wp-block-group__inner-container > .obb-header.position-absolute,
.wp-block-cover__inner-container > .obb-header.position-fixed,
.wp-block-group__inner-container > .obb-header.position-fixed {
	top: 0 !important;
	margin-top: 0 !important;
}
.obb-hero-content .wp-block[data-type="obb/header-block"] {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
}
.obb-header.is-style-obb-center-logo .obb-header-content {
	flex-wrap: nowrap;
	justify-content: center;
	flex-direction: row-reverse;
}
.obb-header.is-style-obb-center-logo .obb-site-identity {
	margin-left: 24px;
	margin-right: 24px;
}
.obb-header.is-style-obb-center-logo .obb-header-content .obb-navigation.primary,
.obb-header.is-style-obb-center-logo .obb-header-content .obb-navigation.secondary {
	width: auto;
	flex-basis: 50%;
	align-self: center;
}
.obb-header.is-style-obb-center-logo .obb-header-content .obb-navigation.primary {
	margin-top: 24px;
}
.obb-header.is-style-obb-center-logo .obb-header-content .obb-navigation.primary .obb-menu-container {
	float: right;
	display: block;
}
.obb-header.is-style-obb-center-logo .obb-header-content .obb-navigation.secondary .obb-menu-container {
	float: left;
	display: block;
}
.obb-header.is-style-obb-center-logo .obb-navigation.primary .obb-menu > li:first-child:not(.button) > a,
.obb-header.is-style-obb-center-logo .obb-navigation.secondary .obb-menu > li:first-child:not(.button) > a {
	border-left: none !important;
}
.obb-header.is-style-obb-center-logo .obb-navigation.primary .obb-menu > li:last-child:not(.button) > a,
.obb-header.is-style-obb-center-logo .obb-navigation.secondary .obb-menu > li:last-child:not(.button) > a {
	border-right: none !important;
}
.obb-header:not(.is-style-obb-center-logo) .obb-navigation.secondary .obb-menu a,
.obb-header:not(.is-style-obb-center-logo) .obb-navigation.secondary .obb-menu a:link,
.obb-header:not(.is-style-obb-center-logo) .obb-navigation.secondary .obb-menu a:visited {
	padding-top: 12px;
	padding-bottom: 12px;
}
.obb-header:not(.is-style-obb-center-logo) .obb-navigation.secondary {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.obb-header:not(.is-style-obb-center-logo) .obb-navigation.primary .obb-menu > li:first-child:not(.button) > a {
	border-left: none !important;
}
.header-align-right .obb-header-content {
	flex-direction: row-reverse;
}
.header-align-right .obb-navigation.secondary .obb-menu-container {
	justify-content: flex-start;
}
.header-align-center .obb-header-content {
	flex-direction: column;
}
.header-align-center .obb-site-identity {
	margin-bottom: 18px;
}
.header-align-center .obb-navigation.secondary .obb-menu-container {
	justify-content: center;
}
.header-align-left .obb-site-identity {
	margin-right: 24px;
}
.header-align-right .obb-site-identity {
	margin-left: 24px;
}
.header-align-right button.obb-menu-toggle,
.header-align-right button.obb-menu-toggle:hover {
	margin-left: 0;
	margin-right: 32px;
}
.header-align-left.is-style-obb-default .obb-navigation.primary .obb-menu > li:last-child:not(.button) > a,
.header-align-right.is-style-obb-default .obb-navigation.primary .obb-menu > li:last-child:not(.button) > a {
	padding-right: 0px !important;
	border-right: none !important;
}
.header-align-left.is-style-obb-default .obb-navigation.primary .obb-menu > li:first-child:not(.button) > a,
.header-align-right.is-style-obb-default .obb-navigation.primary .obb-menu > li:first-child:not(.button) > a {
	padding-left: 0px !important;
	border-left: none !important;
}
.header-transparent-scroll.header-multiple-logos.scrolling .obb-site-logo .logo-primary {
	opacity: 0;
}
.header-transparent-scroll.header-multiple-logos.scrolling .obb-site-logo .logo-secondary {
	opacity: 1;
}
.obb-header.position-absolute {
	position: absolute;
	top: 0; left: 0;
	z-index: 99;
}
.obb-header.position-fixed {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	z-index: 99;
}
.obb-header.position-fixed.header-transparent-scroll a,
.obb-header.position-absolute.header-transparent-scroll a {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.obb-header.position-fixed.header-transparent-scroll.scrolling a,
.obb-header.position-absolute.header-transparent-scroll.scrolling a,
.obb-header.position-fixed.header-transparent-scroll li li a,
.obb-header.position-absolute.header-transparent-scroll li li a {
	text-shadow: none;
}
.obb-header.header-transparent-scroll #obb-menu-toggle svg {
	fill: #999999;
}
.obb-header.header-transparent-scroll #obb-menu-toggle:hover svg {
	fill: #ffffff;
}
.obb-header.header-transparent-scroll.scrolling #obb-menu-toggle:hover svg {
	fill: #000000;
}
.obb-header.position-fixed.scrolling .obb-header-shadow {
	display: none;
	background: none;
}

@media screen and (max-width: 1024px) {
	.obb-header.is-style-obb-center-logo .obb-header-content {
		justify-content: space-between;
		flex-direction: row;
	}
	.obb-header.is-style-obb-center-logo .obb-site-identity {
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.obb-site-logo {
		margin: 0;
	}
	.obb-header .obb-site-identity {
		flex-basis: 75%;
		margin: 0;
	}
	.header-align-center .obb-header-content {
		flex-direction: row;
	}
	.header-align-center .obb-site-identity {
		margin-bottom: 0;
	}
	.admin-bar:not(.wp-admin) .organic-block.obb-header.position-fixed {
		top: 46px;
		transition: top .25s ease-out;
	}
}

@media screen and (max-width: 600px) {
	.admin-bar:not(.wp-admin) .organic-block.obb-header.position-fixed {
		position: absolute;
		top: 0;
	}
}

/************************************************
	Hero Block
************************************************/

.obb-hero,
.editor-styles-wrapper .obb-hero {
	display: flex;
  position: relative;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	box-sizing: border-box;
	overflow: hidden;
}
.obb-hero-content {
	width: 100%;
	padding: 48px;
	/* box-sizing: border-box; */
}
.obb-hero .obb-content {
	position: relative !important;
	z-index: 8 !important;
}
.obb-content-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
}
.obb-background-video-container {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0; left: 0;
	z-index: 2;
}
.obb-background-video-container video {
	position: absolute;
  	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
  	z-index: 0;
}
.obb-background-video-container iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	cursor: pointer;
	pointer-events: none;
}
.obb-hero .obb-featured-img {
	display: none;
	position: absolute !important;
  	top: 0; left: 0;
	height: 100%;
  	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 1;
}
.obb-hero .obb-featured-img img {
	height: 100%;
}
.obb-hero.obb-window-height {
	height: 100vh;
}
.obb-hero.obb-has-featured-img .obb-featured-img {
	display: block;
}
.obb-hero.obb-featured-img-parallax {
	background-attachment: fixed;
}
.obb-hero .obb-featured-img .wp-block-post-featured-image {
	display: flex;
	height: 100%;
	margin: 0;
}
.obb-hero .obb-featured-img .wp-block-post-featured-image img {
	object-fit: cover;
	object-position: center;
}
.obb-hero .block-editor-block-list__layout {
	position: inherit;
	height: 100%;
}
.obb-hero .obb-featured-img .components-placeholder,
.obb-hero .obb-featured-img .post-featured-image_placeholder {
	display: none;
}

@media (min-aspect-ratio: 16/9) {
  .obb-background-video-container iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .obb-background-video-container iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

@media screen and (max-width: 1024px) {
	.obb-hero-content {
		padding: 36px;
	}
}

@media screen and (max-width: 768px) {
	.obb-hero-content {
		padding: 24px;
	}
	.obb-hero.obb-window-height {
		height: auto;
	}
	.obb-hero.obb-featured-img-parallax {
		background-attachment: scroll;
	}
}

/* Content Alignment */

.obb-hero.obb-position-center-center {
	align-items: center;
	justify-content: center;
}
.obb-hero.obb-position-center-left {
	align-items: center;
	justify-content: flex-start;
}
.obb-hero.obb-position-center-right {
	align-items: center;
	justify-content: flex-end;
}

.obb-hero.obb-position-top-left {
	align-items: flex-start;
	justify-content: flex-start;
}
.obb-hero.obb-position-top-center {
	align-items: flex-start;
	justify-content: center;
}
.obb-hero.obb-position-top-right {
	align-items: flex-start;
	justify-content: flex-end;
}

.obb-hero.obb-position-bottom-left {
	align-items: flex-end;
	justify-content: flex-start;
}
.obb-hero.obb-position-bottom-center {
	align-items: flex-end;
	justify-content: center;
}
.obb-hero.obb-position-bottom-right {
	align-items: flex-end;
	justify-content: flex-end;
}

/* Styles */

.obb-hero.is-style-obb-clip-angle-bottom-right {
	clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
}
.obb-hero.is-style-obb-clip-angle-bottom-left {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}
.obb-hero.is-style-obb-clip-arrow-up {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
.obb-hero.is-style-obb-clip-arrow-down {
	clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}
.obb-hero.is-style-obb-clip-wave-curve-right {
	clip-path: url(#wave-curve-right);
	-webkit-clip-path: url(#wave-curve-right);
}
.obb-hero.is-style-obb-clip-wave-curve-left {
	clip-path: url(#wave-curve-left);
	-webkit-clip-path: url(#wave-curve-left);
}
.obb-hero.is-style-obb-clip-bottom-bulge {
	clip-path: url(#bulge);
	-webkit-clip-path: url(#bulge);
}
.obb-hero.is-style-obb-clip-sunrise {
	clip-path: ellipse(100% 55% at 48% 44%);
}

/************************************************
	Footer Block
************************************************/

.obb-footer {
	margin: 0 !important;
}
.obb-footer .obb-footer-container,
.obb-footer .obb-footer-info {
	display: flex;
}
.obb-footer .obb-navigation {
	margin-top: 12px;
	margin-bottom: 12px;
	padding: 0px;
}
.obb-footer .obb-footer-copyright {
	font-size: 0.7rem;
	margin: 12px 0px;
	padding: 0px;
}
.obb-footer .obb-footer-return {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #333333;
	height: 48px;
	width: 48px;
	text-align: center;
	margin: 12px;
	padding: 0px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
	border-radius: 3px;
}
.obb-footer .obb-menu a,
.obb-footer .obb-footer-return i {
	font-style: normal;
	transition: all .15s ease-out;
}
.obb-footer .obb-footer-return:hover i {
	transform: scale(1.2);
}
.obb-footer .obb-footer-return i::before {
	font-size: 18px;
	margin-top: 4px;
}

/* Conditionals */

.footer-align-center .obb-footer-icon {
	width: 100%;
	text-align: center;
}
.footer-align-center .obb-footer-container {
	flex-direction: column;
}
.footer-align-center .obb-footer-info {
	flex-direction: column;
	align-items: center;
}
.footer-align-center .obb-footer-return {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 24px;
}
.footer-align-left .obb-footer-icon {
	line-height: 0;
	margin-right: 8px;
}
.footer-align-left .obb-footer-container {
	align-items: center;
	justify-content: space-between;
}
.footer-align-left .obb-footer-info {
	width: 100%;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.footer-align-left .obb-footer-nav {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
.footer-align-right .obb-footer-icon {
	margin-left: 8px;
}
.footer-align-right .obb-footer-container {
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.footer-align-right .obb-footer-info {
	width: 100%;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}
.footer-align-right .obb-footer-nav {
	display: flex;
	align-items: center;
	flex-direction: row;
}

@media screen and (max-width: 768px) {
	.obb-footer .obb-footer-container {
		flex-direction: column;
	}
	.obb-footer .obb-footer-container .obb-footer-icon {
		width: 100%;
		text-align: center;
	}
	.obb-footer .obb-footer-container .obb-footer-info {
		flex-direction: column;
		align-items: center;
	}
	.obb-footer .obb-footer-container .obb-footer-return {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 24px;
	}
}

/************************************************
	Profile Block
************************************************/

.obb-profile {
	display: flex !important;
	align-items: stretch;
	background-color: #ffffff;
	box-sizing: border-box;
	overflow: hidden;
}
.obb-profile ul,
.obb-profile li {
	list-style: none;
	margin: 0; padding: 0;
}
.obb-profile .obb-profile-image {
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	line-height: 0;
	width: 60%;
	overflow: hidden;
}
.obb-profile.obb-orientation-horizontal .obb-profile-image {
	max-width: 100%;
}
.obb-profile .obb-profile-image.image-inactive {
	background: #f4f4f4 !important;
	width: 100%;
	min-width: auto !important;
	justify-content: center;
	cursor: inherit;
	pointer-events: inherit;
}
.obb-profile .obb-profile-image button.image-button {
	line-height: 0;
	margin: 0 auto;
}
.obb-profile .obb-profile-image figure {
	margin: 0px;
}
.obb-profile .obb-profile-image img {
	opacity: 0;
}
.obb-profile .obb-profile-body {
	flex-basis: 100%;
	padding: 24px;
}
.obb-profile .obb-profile-content {
	width: 100%;
	box-sizing: border-box;
}
.obb-profile .obb-profile-content > :first-child {
	margin-top: 0;
}
.obb-profile .obb-profile-content > :last-child {
	margin-bottom: 0;
}
.obb-profile .obb-profile-content .obb-profile-title {
	margin-bottom: 0;
	padding-bottom: 0;
}
.obb-profile .obb-profile-content .obb-profile-subtitle {
	font-size: 110%;
	text-transform: uppercase;
	margin: 8px 0px;
	padding: 0;
}
.obb-profile .obb-profile-content p {
	line-height: 1.6;
	padding: 0;
}
.obb-profile .obb-profile-social {
	display: inline-block;
	margin-top: 24px;
}
.obb-profile-social ul.obb-menu.obb-social-menu {
	display: flex;
}
.obb-profile-social ul.obb-menu.obb-social-menu,
.obb-profile-social ul.obb-menu.obb-social-menu li {
	float: none;
}
.obb-profile-social ul.obb-menu.obb-social-menu li {
	margin: 0px 4px;
	padding: 0;
}
.obb-profile-social ul.obb-menu.obb-social-menu li:first-child {
	margin-left: 0;
}
.obb-profile-social ul.obb-menu.obb-social-menu li:last-child {
	margin-right: 0;
}
.obb-profile-social .obb-social-menu li a {
	background: #ffffff;
	min-width: 16px;
	line-height: 16px;
	padding: 12px;
	border-radius: 50%;
	transition: all .25s ease-out;
}
.obb-profile-social .obb-social-menu li a:hover {
	color: #ffffff;
	background: #000000;
	border-radius: 50%;
	transform: scale(1.1);
}
.obb-profile-social li a::before {
	font-family: 'Font Awesome 5 Free';
	content: '\f2d0';
	font-weight: 600;
}

/* Styles */

.obb-style-modern.obb-profile {
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	overflow: hidden;
}
.obb-orientation-vertical.obb-profile {
	flex-direction: column;
}
.obb-orientation-vertical.obb-text-align-center.obb-profile {
	align-items: center;
}
.obb-orientation-vertical.obb-text-align-left.obb-profile {
	align-items: flex-start;
}
.obb-orientation-vertical.obb-text-align-right.obb-profile {
	align-items: flex-end;
}
.obb-style-rounded.obb-profile {
	border-radius: 12px;
}
.obb-style-rounded.obb-profile .obb-profile-image {
	background: none !important;
}
.obb-style-rounded.obb-orientation-vertical.obb-profile .obb-profile-image {
	margin-top: 36px;
}
.obb-orientation-vertical.obb-profile:not(.obb-style-rounded) .obb-profile-image {
	width: 100% !important;
}
.obb-orientation-horizontal.obb-profile .obb-profile-image:not(.image-inactive) {
	min-height: auto !important;
}
.obb-style-rounded.obb-profile:not(.obb-orientation-vertical) .obb-profile-image figure {
	margin: 24px;
}
.obb-style-rounded.obb-profile .obb-profile-image img {
	opacity: 1;
	border-radius: 50%;
}

/* Vertical Alignment */

.obb-profile.obb-vertical-align-top {
	align-items: flex-start;
}
.obb-profile.obb-vertical-align-center {
	align-items: center;
}
.obb-profile.obb-vertical-align-bottom {
	align-items: flex-end;
}
.obb-profile.obb-vertical-align-top:not(.obb-style-rounded) .obb-featured-img,
.obb-profile.obb-vertical-align-center:not(.obb-style-rounded) .obb-featured-img,
.obb-profile.obb-vertical-align-bottom:not(.obb-style-rounded) .obb-featured-img {
	align-self: stretch;
}

@media screen and (max-width: 768px) {
	.obb-profile {
		flex-direction: column;
		padding: 0;
	}
	.obb-profile .obb-profile-image {
		background: none !important;
		max-width: 100%;
		width: 100%;
	}
	.obb-profile .obb-profile-image img {
		opacity: 1;
		margin: 0px auto;
	}
	.obb-style-rounded.obb-profile .obb-profile-image {
		margin-left: auto;
		margin-right: auto;
	}
	.obb-style-rounded.obb-profile:not(.obb-orientation-vertical) .obb-profile-image figure {
		margin: 24px 24px 0px 24px;
	}
	.obb-orientation-vertical.obb-profile:not(.obb-style-rounded) .obb-profile-image {
		min-height: auto !important;
	}
	.obb-profile.obb-style-angular.obb-orientation-horizontal .obb-profile-image {
		clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
	}
}

/************************************************
	Toggle Block
************************************************/

.obb-toggle {
	margin: 24px 0px;
	padding: 0px;
	overflow: hidden;
}
.obb-toggle .obb-toggle-trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 0px;
	padding: 12px;
	box-sizing: border-box;
	cursor: pointer;
	zoom: 1;
}
.obb-toggle-trigger .obb-toggle-title {
	font-size: 1.2rem;
	font-style: normal;
	text-align: left;
	margin: 0px;
	padding: 0px;
}
.obb-toggle-trigger .obb-toggle-icon {
	color: #999999;
	font-weight: 600;
	font-style: normal;
	margin-right: 8px;
	padding-left: 12px;
}
.obb-toggle-trigger .obb-open,
.obb-toggle-trigger.active .obb-close {
	display: inline-block;
}
.obb-toggle-trigger .obb-close,
.obb-toggle-trigger.active .obb-open {
	display: none;
}
.obb-toggle-container {
	display: block;
	transition: all .25s ease-out;
	height: 0;
	opacity: 0;
	margin: 0;
	padding: 0;
}
.obb-toggle-trigger.active + .obb-toggle-container {
	height: auto;
	opacity: 1;
}
.obb-toggle-content {
	margin: 0;
	padding: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	overflow: hidden;
}
.obb-toggle-content > :first-child {
	margin-top: 0;
}
.obb-toggle-content > :last-child {
	margin-bottom: 0;
}
.obb-toggle-content .alignwide,
.obb-toggle-content .alignfull,
.obb-toggle-content .wp-block[data-align="wide"],
.obb-toggle-content .wp-block[data-align="full"] {
	width: calc(100% + 48px) !important;
	max-width: calc(100% + 48px);
	margin-left: -24px !important;
	left: auto !important;
}
.obb-toggle-content > .alignwide:first-child,
.obb-toggle-content > .alignfull:first-child,
.obb-toggle-content .block-editor-block-list__layout > .wp-block[data-align="wide"]:first-child,
.obb-toggle-content .block-editor-block-list__layout > .wp-block[data-align="full"]:first-child {
	margin-top: -24px !important;
}
.obb-toggle-content .block-editor-block-list__layout > .wp-block[data-align="wide"]:first-child .block-editor-block-list__block,
.obb-toggle-content .block-editor-block-list__layout > .wp-block[data-align="full"]:first-child .block-editor-block-list__block {
	margin-top: 0px;
}
.obb-toggle-content p, .editor-styles-wrapper .obb-toggle-content p,
.obb-toggle-content h1, .editor-styles-wrapper .obb-toggle-content h1,
.obb-toggle-content h2, .editor-styles-wrapper .obb-toggle-content h2,
.obb-toggle-content h3, .editor-styles-wrapper .obb-toggle-content h3,
.obb-toggle-content h4, .editor-styles-wrapper .obb-toggle-content h4,
.obb-toggle-content h5, .editor-styles-wrapper .obb-toggle-content h5,
.obb-toggle-content h6, .editor-styles-wrapper .obb-toggle-content h6 {
	margin: 24px 0px;
	padding: 0px;
}
.editor-styles-wrapper .obb-toggle-content {
	display: block;
}

/************************************************
	Alert Block
************************************************/

.obb-alert.obb-alert-popup {
	display: none;
}
.obb-alert-box {
	display: inline-block;
	width: 100%;
	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
}
.obb-alert-box.obb-alert-above {
	position: fixed;
	top: 50%; left: 50%;
	width: calc(100% - 72px);
	max-width: 960px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	z-index: 9999;
}
.obb-alert-overlay {
	position: fixed;
	top: 50%; left: 50%;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	z-index: 999;
}
.obb-alert-box button.obb-alert-close,
.obb-alert-box button.obb-alert-close:hover {
	float: right;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 8px; right: 8px;
	background: none;
	width: 18px;
	height: 18px;
	line-height: 16px;
	margin: 0px;
	padding: 0px;
	border: none;
	border-radius: 2px;
	box-shadow: none;
	cursor: pointer;
}
.obb-alert-box button.obb-alert-close .obb-alert-icon {
	color: rgba(0, 0, 0, 0.4);
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.24);
	font-weight: 600;
	font-style: normal;
	font-size: 16px;
}
.obb-alert-box button.obb-alert-close:hover .obb-alert-icon {
	color: rgba(0, 0, 0, 0.8);
}
.obb-alert-content blockquote,
.obb-alert-content .wp-block-quote {
	margin-top: 18px;
	margin-bottom: 18px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-left: none;
}
.obb-alert-content > :first-child,
.obb-alert-content > :first-child figure,
.obb-alert-content > :first-child .wp-block-button__link,
.obb-alert-content > :first-child .wp-block-button__link:hover,
.obb-alert-content .block-editor-block-list__layout > :first-child {
	margin-top: 0px;
}
.obb-alert-content > :last-child,
.obb-alert-content > :last-child figure,
.obb-alert-content > :last-child .wp-block-button__link,
.obb-alert-content > :last-child .wp-block-button__link:hover,
.obb-alert-content .block-editor-block-list__layout > :last-child {
	margin-bottom: 0px;
}
.editor-styles-wrapper .obb-alert-content {
	display: block;
}

/* Rounded Style */

.obb-alert.is-style-obb-rounded button.obb-alert-close,
.obb-alert-box.is-style-obb-rounded button.obb-alert-close {
	top: -6px; right: -6px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: #ffffff;
	border: none;
	border-radius: 24px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.24);
}
.obb-alert.is-style-obb-rounded button.obb-alert-close .obb-alert-icon::before,
.obb-alert-box.is-style-obb-rounded button.obb-alert-close .obb-alert-icon::before {
	content: '\f056';
}
.obb-alert.is-style-obb-rounded button.obb-alert-close .obb-alert-icon::before,
.obb-alert-box.is-style-obb-rounded button.obb-alert-close .obb-alert-icon::before {
	content: '\f057';
}

/* Modern Style */

.obb-alert.is-style-obb-modern button.obb-alert-close,
.obb-alert-box.is-style-obb-modern button.obb-alert-close {
	top: 12px;
	right: 12px;
}
.obb-alert.is-style-obb-modern button.obb-alert-close .obb-alert-icon,
.obb-alert-box.is-style-obb-modern button.obb-alert-close .obb-alert-icon {
	font-size: 18px;
}
.obb-alert.is-style-obb-modern button.obb-alert-close .obb-alert-icon::before,
.obb-alert-box.is-style-obb-modern button.obb-alert-close .obb-alert-icon::before {
	content: '\f410';
}

/* Bordered Style */

.obb-alert.is-style-obb-bordered button.obb-alert-close,
.obb-alert-box.is-style-obb-bordered button.obb-alert-close {
	top: 8px; right: 8px;
	width: 32px;
	height: 32px;
	line-height: 32px;
}
.obb-alert.is-style-obb-bordered button.obb-alert-close .obb-alert-icon,
.obb-alert-box.is-style-obb-bordered button.obb-alert-close .obb-alert-icon {
	font-weight: 400;
	font-size: 24px;
}
.obb-alert.is-style-obb-bordered button.obb-alert-close .obb-alert-icon::before,
.obb-alert-box.is-style-obb-bordered button.obb-alert-close .obb-alert-icon::before {
	content: '\f057';
}

/************************************************
	Pricing Table Block
************************************************/

.obb-pricing,
.obb-pricing-table,
.obb-pricing-content,
.wp-block-obb-pricing-table {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.obb-pricing .obb-pricing-header p {
	margin-top: 12px;
	margin-bottom: 12px;
}
.obb-pricing-content .obb-pricing-header,
.obb-pricing-content .obb-pricing-footer {
	margin: 0;
	padding: 24px;
	box-sizing: border-box;
}
.obb-pricing-content .obb-pricing-icon {
	margin: 12px auto;
}
.obb-pricing-content .obb-pricing-title,
.obb-pricing-content .obb-pricing-price {
	line-height: 1.2;
	margin-top: 12px !important;
	margin-bottom: 12px !important;
}
.obb-pricing-content .obb-pricing-price {
	font-weight: 900;
}
.obb-pricing-content .obb-pricing-body {
	margin: 0;
}
.obb-pricing-content .obb-pricing-body ul,
.obb-pricing-content .obb-pricing-body li {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.obb-pricing-content .obb-pricing-body ul {
	padding-top: 0;
	padding-bottom: 0;
}
.obb-pricing-content .obb-pricing-body li {
	position: relative;
	list-style: none;
	padding-top: 8px;
	padding-bottom: 8px;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	z-index: 6;
}
.obb-pricing-content .obb-pricing-body li:first-child {
	border-top: none;
}
.obb-pricing-content .obb-pricing-body .has-background li:nth-child(even)::after {
	display: block;
	content: '';
	background: rgba(255, 255, 255, 0.18);
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.obb-pricing-content .obb-pricing-footer .wp-block-button,
.obb-pricing-content .obb-pricing-footer .wp-block-button .wp-block-button__link,
.obb-pricing-content .obb-pricing-footer .wp-block-button .wp-block-button__link:hover {
	margin-top: 0;
	margin-bottom: 0;
}
.obb-pricing-footer .obb-pricing-buttons {
	justify-content: center;
}

/* Check Icons Style */

.obb-pricing.is-style-obb-check-icons .obb-pricing-content .obb-pricing-body li::before {
	content: '\f00c';
	color: #99cc33;
	position: relative;
	top: -2px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	font-size: 14px;
	margin-right: 6px;
}

/* Check Circle Icons Style */

.obb-pricing.is-style-obb-check-circle-icons .obb-pricing-content .obb-pricing-body li::before {
	content: '\f058';
	color: #99cc33;
	position: relative;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	font-size: 16px;
	margin-right: 6px;
}

/* Star Icons Style */

.obb-pricing.is-style-obb-star-icons .obb-pricing-content .obb-pricing-body li::before {
	content: '\f005';
	color: #cc9900;
	position: relative;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	font-size: 16px;
	margin-right: 6px;
}

@media screen and (max-width: 768px) {
	.obb-pricing.obb-mobile-reset {
		transform: scale(1) !important;
	}
}

/************************************************
	Modal Block
************************************************/

.obb-modal-box {
	display: none;
	position: fixed;
	top: 50%; left: 50%;
	width: calc(100% - 72px);
	max-width: 720px;
	margin: 24px 0px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	z-index: 9999;
}
.obb-modal-box a.close-modal {
	float: right;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	position: absolute;
	text-align: center;
	text-indent: -9999px;
	text-decoration: none;
	top: 8px; right: 8px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	overflow: hidden;
	cursor: pointer;
	z-index: 9;
}
.obb-modal-box a.close-modal::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	content: '\f00d';
	color: rgba(0, 0, 0, 0.4);
	text-indent: 0px;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.24);
	font-weight: 600;
	font-size: 14px;
}
.obb-modal-box a.close-modal:hover::after {
	color: rgba(0, 0, 0, 0.8);
}
.obb-modal-box p, .editor-styles-wrapper .obb-modal-box p,
.obb-modal-box h1, .editor-styles-wrapper .obb-modal-box h1,
.obb-modal-box h2, .editor-styles-wrapper .obb-modal-box h2,
.obb-modal-box h3, .editor-styles-wrapper .obb-modal-box h3,
.obb-modal-box h4, .editor-styles-wrapper .obb-modal-box h4,
.obb-modal-box h5, .editor-styles-wrapper .obb-modal-box h5,
.obb-modal-box h6, .editor-styles-wrapper .obb-modal-box h6 {
	margin: 18px 0px;
	padding: 0px;
}
.obb-modal-content {
	padding: 32px;
	box-sizing: border-box;
	overflow: hidden;
}
.obb-modal-content form {
	text-align: left;
	margin: 0;
}
.obb-modal-content .wp-block-jetpack-contact-form {
	width: 100%;
}
.obb-modal-content > .wp-block-cover,
.obb-modal-content .block-editor-block-list__layout > .wp-block-cover {
	width: calc(100% + 64px);
	max-width: calc(100% + 64px);
	margin-left: -32px;
	margin-top: -32px;
	margin-bottom: 32px;
}
.obb-modal-content > .wp-block-cover:last-child,
.obb-modal-content .block-editor-block-list__layout > .wp-block-cover:last-child {
	margin-bottom: -32px;
}
.obb-modal-content > :last-child,
.obb-modal-content > :last-child figure,
.obb-modal-content > :last-child .wp-block-button__link,
.obb-modal-content > :last-child .wp-block-button__link:hover {
	margin-bottom: 0;
}
.is-style-outline .obb-modal-button .wp-block-button__link {
	background: inherit;
	color: inherit;
}
.editor-styles-wrapper .obb-modal-box {
	display: block;
	position: relative;
	top: auto; left: auto;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	margin: 24px auto;
	z-index: 1;
}
.jquery-modal {
	position: fixed;
	top: 50%; left: 50%;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	z-index: 999;
}

/************************************************
	Clipboard Block
************************************************/

.obb-clipboard {
	display: block;
}
.obb-clipboard-alert {
	display: none;
}

/* jQuery UI Dialog */

.obb-ui-dialog {
	z-index: 9999;
}
.obb-ui-dialog:focus,
.obb-ui-dialog .ui-dialog-content:focus {
	outline: 0 !important;
	border: none !important;
}
.obb-ui-dialog .ui-dialog-content {
	color: #ffffff;
	background: #424242;
	background: -webkit-linear-gradient(to bottom, #424242 , #222222);
	background: linear-gradient(to bottom, #424242 , #222222);
	height: auto !important;
	padding: 8px 36px 8px 12px;
	border-radius: 3px;
	outline: 0 !important;
	border: 1px solid #333333;
	box-sizing: border-box;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.24);
}
.obb-ui-dialog .ui-dialog-title {
	display: none;
}
.obb-ui-dialog .ui-button {
	visibility: hidden;
	position: absolute;
	top: 50%; right: 12px;
	line-height: 1;
	width: 16px;
	margin-top: -8px;
	padding: 0;
	border: none;
}
.obb-ui-dialog .ui-button-icon-space::after {
	visibility: visible;
	color: #666666;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	font-size: 16px;
	content: '\f057';
}
.obb-ui-dialog + .ui-widget-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.24);
}

/************************************************
	Style Presets
************************************************/

/* Rounded Style */

.obb-toggle.is-style-obb-rounded,
.obb-style-rounded .obb-modal-content {
	border-radius: 12px;
}
.obb-modal-box.obb-style-rounded a.close-modal {
	top: -8px; right: -8px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: #ffffff;
	border: none;
	border-radius: 24px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.24);
}
.obb-toggle.is-style-obb-rounded .obb-toggle-trigger .obb-toggle-icon.obb-open::before {
	content: '\f055';
}
.obb-toggle.is-style-obb-rounded .obb-toggle-trigger .obb-toggle-icon.obb-close::before {
	content: '\f056';
}

/* Modern Style */

.obb-toggle.is-style-obb-modern {
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}
.obb-style-modern .obb-modal-content {
	border-radius: 3px;
}
.obb-toggle.is-style-obb-modern {
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
.obb-modal-box.obb-style-modern a.close-modal {
	top: -4px; right: -4px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	background: #ffffff;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.24);
}
.obb-toggle.is-style-obb-modern .obb-toggle-trigger .obb-toggle-icon.obb-open::before {
	content: '\f0fe';
}
.obb-toggle.is-style-obb-modern .obb-toggle-trigger .obb-toggle-icon.obb-close::before {
	content: '\f146';
}

/* Bordered Style */

.obb-toggle.is-style-obb-bordered,
.obb-style-bordered .obb-modal-content {
	border-radius: 3px;
	border: 3px solid rgba(0, 0, 0, 0.12);
}
.obb-modal-box.obb-style-bordered a.close-modal {
	top: -8px; right: -8px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: #ffffff;
	border-radius: 24px;
	border: 3px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.24);
}
.obb-toggle.is-style-obb-bordered .obb-toggle-trigger .obb-toggle-icon.obb-open,
.obb-toggle.is-style-obb-bordered .obb-toggle-trigger .obb-toggle-icon.obb-close {
	font-weight: 400;
}
.obb-toggle.is-style-obb-bordered .obb-toggle-trigger .obb-toggle-icon.obb-open::before {
	content: '\f0fe';
}
.obb-toggle.is-style-obb-bordered .obb-toggle-trigger .obb-toggle-icon.obb-close::before {
	content: '\f146';
}

/************************************************
	Navigation Menus
************************************************/

/* ESSENTIAL STYLES */

.obb-menu, .obb-menu * {
	display: table;
	margin:	0 auto 0;
	padding: 0;
	list-style:	none;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
ul.obb-menu {
	float: left;
	line-height: 1;
	margin: 0 !important;
	padding: 0 !important;
}
ul.obb-menu ul {
	position: absolute;
	top: -9999px;
	left: -9999px;
	width: 260px;
	margin: 0;
	padding: 0;
	opacity: 0;
	transition: opacity .15s ease-out;
	visibility: hidden;
}
ul.obb-menu ul li {
	width: 100%;
	margin: 0;
	padding: 0;
}
.obb-menu li {
	float: left;
	display: flex;
	position: relative;
}
.editor-styles-wrapper .obb-menu li {
	margin: 0;
	padding: 0;
}
.obb-menu li li {
	display: block;
	position: relative;
}
.obb-menu a {
	display: inline-block;
	position: relative;
}
.obb-menu > li > a {
	transition: color .25s ease-out;
}
.obb-menu li:hover ul,
.obb-menu li[aria-expanded="true"] ul {
	left: 50%;
	margin-left: -130px;
	top: calc(100% + 12px);
	z-index: 99;
	opacity: 1;
	visibility: visible;
}
ul.obb-menu li:hover li ul,
ul.obb-menu li:hover li li ul {
	top: -9999px;
	opacity: 0;
	visibility: hidden;
}
ul.obb-menu li li:hover ul,
ul.obb-menu li li[aria-expanded="true"] ul,
ul.obb-menu li li li:hover ul,
ul.obb-menu li li li[aria-expanded="true"] ul {
	left: calc(100% + 130px);
	top: -12px;
	opacity: 1;
	visibility: visible;
}
ul.obb-menu > li > ul.sub-menu::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -4px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}
.obb-menu-container ul.obb-menu li {
	margin: 0;
	padding: 0;
}

/* SKIN */

.obb-menu {
	padding: 0px 12px;
}
.obb-menu span {
	display: inline;
}
.obb-menu ul.sub-menu {
	background-color: #ffffff;
	padding: 12px;
	border-radius: 3px;
	box-sizing: border-box;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
	transition-delay: .2s;
	-webkit-transition-delay: .2s;
}
/* Widen Submenu Boundaries */
.obb-menu ul.sub-menu::before {
	position: absolute;
	top: -12px; left: -36px;
	width: 100%; height: 100%;
	content: '';
	padding: 72px;
}
.obb-menu a,
.obb-menu a:link,
.obb-menu a:visited {
	color: #999999;
	color: rgba(0, 0, 0, 0.4);
	background: none;
	text-decoration: none;
	margin: 0;
	padding: 4px 12px;
}
.obb-menu a:focus,
.obb-menu a:hover,
.obb-menu a:active {
	color: rgba(0, 0, 0, 0.8);
	outline: 0;
}
.obb-menu li {
	margin: 0;
}
.obb-menu li li {
	background: none;
	margin: 0;
}
.obb-menu li li a,
.obb-menu li li a:link,
.obb-menu li li a:visited {
	display: block;
	width: auto;
	background: none;
	font-size: 90%;
	text-transform: none;
	text-align: left;
	line-height: 1.4;
	margin: 0;
	padding: 12px;
	border-left: none;
	border-radius: 2px;
}
.obb-menu li li a,
.obb-menu li li a:link,
.obb-menu li li a:visited {
	color: rgba(0, 0, 0, 0.4);
}
.obb-menu li li a:focus,
.obb-menu li li a:hover,
.obb-menu li li a:active {
	color: rgba(0, 0, 0, 0.8);
	background: rgba(0, 0, 0, .04);
	outline: 0;
}
.obb-menu .sub-menu > li:first-child > a {
	border-top: none !important;
}
.obb-menu .sub-menu > li:last-child > a {
	border-bottom: none !important;
}
.obb-menu-container ul.obb-menu > li.button {
	margin-top: -6px;
	margin-left: 8px;
	margin-right: 8px;
	border: none !important;
}
.obb-menu-container ul.obb-menu > li.button > a {
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 16px;
	padding-right: 16px;
	border: 2px solid;
	border-radius: 3px;
}

/* ARROWS */

.obb-menu li.menu-item-has-children > a::after {
	position: relative;
	top: -2px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	font-size: 50%;
	line-height: 1;
	content: '\f078';
	margin-left: 6px;
}
.obb-menu li li.menu-item-has-children > a::after {
	position: absolute;
	right: 12px; top: 50%;
	content: '\f054';
	margin-top: -4px;
}

/* Secondary */

.obb-navigation.secondary {
	width: 100%;
}
.obb-navigation.secondary .obb-menu-container {
	display: flex;
	justify-content: flex-end;
	margin: 0 auto;
}
.obb-navigation.secondary .obb-menu li a {
	margin: 0;
	border-radius: 0;
}
.obb-menu.secondary li li a,
.obb-menu.secondary li li:last-child a {
	border-left: none;
	border-right: none;
}

/************************************************
	Mobile Menu
************************************************/

body.mobile-menu-open {
	max-height: 100vh;
	overflow: hidden;
}
.obb-mobile-menu-container {
	display: none;
	background: #ffffff;
	position: fixed;
	top: 0; right: 100vw;
	line-height: 1.5;
	width: 100vw;
	height: 100%;
	max-width: none !important;
	min-height: 100vh;
	margin-top: 0 !important;
	padding: 36px 0px 96px 0px;
	box-sizing: border-box;
	overflow: auto;
	transition: right .25s ease-in-out;
	-moz-transition: right .25s ease-in-out;
	-webkit-transition: right .25s ease-in-out;
	-o-transition: right .25s ease-in-out;
	z-index: 9999;
}
.obb-mobile-menu-container.revealed {
	right: 0;
}
.obb-mobile-menu-container .obb-site-logo {
	padding: 0px;
}
.admin-bar:not(.wp-admin) .obb-mobile-menu-container {
	top: 32px;
}
.obb-mobile-menu-container .obb-site-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 0;
	padding: 0px 48px;
	box-sizing: border-box;
}
.obb-mobile-menu-container .obb-site-logo a {
	padding-left: 0px;
}
.obb-mobile-menu-container .obb-mobile-menus {
	padding: 0px 48px;
	box-sizing: border-box;
}
.obb-mobile-menu-container #mobile-nav-small .obb-menu li .sub-menu,
.obb-mobile-menu-container #mobile-nav-small .obb-menu li.menu-item-has-children > a::after {
	display: none;
}

.obb-mobile-menus .obb-menu li {
	display: block;
	float: none;
}
.obb-mobile-menus .obb-menu ul.sub-menu::before,
.obb-mobile-menus .obb-menu ul.sub-menu::after {
	display: none;
}
.obb-mobile-menus #mobile-nav-large ul.obb-menu ul.sub-menu {
	display: none;
	width: 100%;
	position: relative;
	background: none;
	top: 0 !important; 
	left: 0 !important;
	margin: 0;
	padding: 0;
	opacity: 1;
	box-shadow: none;
	border-radius: 0;
}
.obb-mobile-menus #mobile-nav-large ul.sub-menu li {
	float: none;
	display: block;
	width: 100%;
	text-align: center;
	line-height: 30px;
	visibility: visible;
}
.obb-mobile-menus #mobile-nav-large ul.sub-menu li a {
	font-size: 80%;
	padding-left: 12px;
	padding-right: 48px;
	letter-spacing: 0;
	background: none !important;
	box-sizing: border-box;
}
.obb-mobile-menus #mobile-nav-large ul.sub-menu li li a {
	padding-left: 24px;
}

/* ARROWS */

.obb-mobile-menus #mobile-nav-large .obb-menu li.menu-item-has-children > .dropdown,
.obb-mobile-menus #mobile-nav-large .obb-menu li li.menu-item-has-children > .dropdown {
	position: absolute;
	top: 0;
	right: 0;
	max-height: 16px;
	font-weight: 600;
	font-size: 50%;
	line-height: 1;
	margin: 0;
	padding: 8px;
	border: 2px solid;
	border-radius: 3px;
}
.obb-mobile-menus #mobile-nav-large .obb-menu li.menu-item-has-children > a::after,
.obb-mobile-menus #mobile-nav-large .obb-menu li li.menu-item-has-children > a::after {
	display: none;
}

button.obb-menu-toggle,
button.obb-menu-toggle:hover {
	display: none;
	cursor: pointer;
	background: none;
	position: relative;
	margin: 0px 0px 0px 24px;
	padding: 12px;
	border: none;
	box-shadow: none !important;
	z-index: 9;
}
button.obb-menu-toggle svg {
	fill: rgba(0, 0, 0, 0.4);
}
button.obb-menu-toggle:hover svg {
	fill: rgba(0, 0, 0, 1);
}

#mobile-nav-large,
#mobile-nav-small {
	display: block;
	position: relative;
	width: 100%;
}
#mobile-nav-large {
	font-size: 2.2rem;
	letter-spacing: -1px;
	margin-top: 48px;
	padding-bottom: 24px;
}
#mobile-nav-small {
	font-size: 1.2rem;
	margin-top: 12px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: none;
}
#mobile-nav-small::before {
	content: '';
	width: 100%;
	position: absolute;
	top: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}
#mobile-nav-large .obb-menu,
#mobile-nav-small .obb-menu {
	float: none;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#mobile-nav-large .obb-menu a,
#mobile-nav-small .obb-menu a {
	width: 100%;
	background: none !important;
	line-height: 1.1;
	margin: 0;
	padding: 8px 0px;
	border: none;
	box-sizing: border-box;
}
#mobile-nav-small .obb-menu a::before {
	color: inherit;
	font-size: 120%;
	padding: 0;
}
#mobile-nav-large .obb-menu a:hover,
#mobile-nav-small .obb-menu a:hover {
	text-decoration: underline;
}
#mobile-nav-large .obb-menu li {
	width: 100%;
}
#mobile-nav-large .obb-menu li a::before {
	font-size: 24px;
}
#mobile-nav-small .obb-menu li {
	float: left;
	width: 50%;
	line-height: 1.6;
	padding: 4px 12px 4px 0px;
	box-sizing: border-box;
}
#mobile-nav-large .obb-menu li.button {
	text-align: center;
	margin: 12px 0 0 0;
	top: 0 !important;
	box-shadow: none !important;
}
#mobile-nav-large .obb-menu li.button a {
	padding: 12px 18px;
	border: 3px solid;
}
#mobile-nav-small ul.obb-menu > li.button {
	top: 0;
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
	border: none !important;
	box-shadow: none;
}
#mobile-nav-small ul.obb-menu > li.button > a {
	top: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

/* Mobile Only View */

.header-mobile-view #obb-nav,
.header-mobile-view .obb-navigation.secondary {
	display: none;
}
.header-mobile-view button.obb-menu-toggle,
.header-mobile-view button.obb-menu-toggle:hover,
.header-mobile-view.obb-mobile-menu-container {
	display: block;
}

@media screen and (max-width: 1024px) {
	#obb-nav,
	.obb-navigation.secondary {
		display: none;
	}
	button.obb-menu-toggle,
	button.obb-menu-toggle:hover {
		display: flex;
		justify-content: flex-end;
		flex-basis: 20%;
		margin: 0;
		padding: 0;
	}
	.obb-mobile-menu-container {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.admin-bar:not(.wp-admin) .obb-mobile-menu-container {
		top: 46px;
	}
	.obb-mobile-menu-container .obb-site-info,
	.obb-mobile-menu-container .obb-mobile-menus {
		padding-left: 0;
		padding-right: 0;
	}
}

@media screen and (max-width: 600px) {
	.admin-bar:not(.wp-admin) .obb-mobile-menu-container.scrolling {
		top: 0;
	}
}

/************************************************
	Social Media Icons
************************************************/

.obb-menu li a[href*="bandcamp.com"]::before      { font-family: 'Font Awesome 5 Brands'; content: '\f2d5'; }
.obb-menu li a[href*="soundcloud.com"]::before    { font-family: 'Font Awesome 5 Brands'; content: '\f1be'; }
.obb-menu li a[href*="reddit.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f281'; }
.obb-menu li a[href*="twitch.tv"]::before         { font-family: 'Font Awesome 5 Brands'; content: '\f1e8'; }
.obb-menu li a[href*="snapchat.com"]::before      { font-family: 'Font Awesome 5 Brands'; content: '\f2ac'; }
.obb-menu li a[href*="medium.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f23a'; }
.obb-menu li a[href*="tumblr.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f173'; }
.obb-menu li a[href*="apple.com"]::before         { font-family: 'Font Awesome 5 Brands'; content: '\f179'; }
.obb-menu li a[href*="etsy.com"]::before          { font-family: 'Font Awesome 5 Brands'; content: '\f2d7'; }
.obb-menu li a[href*="facebook.com"]::before      { font-family: 'Font Awesome 5 Brands'; content: '\f39e'; }
.obb-menu li a[href*="twitter.com"]::before       { font-family: 'Font Awesome 5 Brands'; content: '\f099'; }
.obb-menu li a[href*="tiktok.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\e07b'; }
.obb-menu li a[href*="google.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f1a0'; }
.obb-menu li a[href*="linkedin.com"]::before      { font-family: 'Font Awesome 5 Brands'; content: '\f0e1'; }
.obb-menu li a[href*="github.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f113'; }
.obb-menu li a[href*="dribbble.com"]::before      { font-family: 'Font Awesome 5 Brands'; content: '\f17d'; }
.obb-menu li a[href*="foursquare.com"]::before    { font-family: 'Font Awesome 5 Brands'; content: '\f180'; }
.obb-menu li a[href*="pinterest.com"]::before     { font-family: 'Font Awesome 5 Brands'; content: '\f0d2'; }
.obb-menu li a[href*="wordpress.com"]::before     { font-family: 'Font Awesome 5 Brands'; content: '\f19a'; }
.obb-menu li a[href*="youtube.com"]::before       { font-family: 'Font Awesome 5 Brands'; content: '\f167'; }
.obb-menu li a[href*="vine.co"]::before           { font-family: 'Font Awesome 5 Brands'; content: '\f1ca'; }
.obb-menu li a[href*="instagram.com"]::before     { font-family: 'Font Awesome 5 Brands'; content: '\f16d'; }
.obb-menu li a[href*="stackexchange.com"]::before { font-family: 'Font Awesome 5 Brands'; content: '\f18d'; }
.obb-menu li a[href*="spotify.com"]::before       { font-family: 'Font Awesome 5 Brands'; content: '\f1bc'; }
.obb-menu li a[href*="amazon.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f270'; }
.obb-menu li a[href*="flickr.com"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f16e'; }
.obb-menu li a[href*="vimeo.com"]::before         { font-family: 'Font Awesome 5 Brands'; content: '\f27d'; }
.obb-menu li a[href*="yelp.com"]::before          { font-family: 'Font Awesome 5 Brands'; content: '\f1e9'; }
.obb-menu li a[href*="discord.gg"]::before        { font-family: 'Font Awesome 5 Brands'; content: '\f392'; }
.obb-menu li a[href*="telegram.org"]::before,
.obb-menu li a[href*="t.me"]::before              { font-family: 'Font Awesome 5 Brands'; content: '\f2c6'; }
.obb-menu li a[href*="mailto:"]::before           { font-family: 'Font Awesome 5 Free'; content: '\f0e0'; }
.obb-menu li a[href$="/feed/"]::before            { font-family: 'Font Awesome 5 Free'; content: '\f09e'; }
.obb-menu li a[href*="wa.me"]::before,
.obb-menu li a[href*="whatsapp.com"]::before      { font-family: 'Font Awesome 5 Brands'; content: '\f232'; }
.obb-menu li a[href*="m.me"]::before,
.obb-menu li a[href*="messenger.com"]::before     { font-family: 'Font Awesome 5 Brands'; content: '\f39f'; }
.obb-menu li a[href*="tel:"]::before              { font-family: 'Font Awesome 5 Free'; font-weight: 600; content: '\f095'; }

.obb-menu li a[href*="twitch.tv"], .obb-menu li a[href*="reddit.com"],
.obb-menu li a[href*="snapchat.com"], .obb-menu li a[href*="medium.com"],
.obb-menu li a[href*="tumblr.com"], .obb-menu li a[href*="apple.com"],
.obb-menu li a[href*="facebook.com"], .obb-menu li a[href*="twitter.com"],
.obb-menu li a[href*="google.com"], .obb-menu li a[href*="linkedin.com"],
.obb-menu li a[href*="github.com"], .obb-menu li a[href*="dribbble.com"],
.obb-menu li a[href*="foursquare.com"], .obb-menu li a[href*="pinterest.com"],
.obb-menu li a[href*="wordpress.com"], .obb-menu li a[href*="youtube.com"],
.obb-menu li a[href*="vine.co"], .obb-menu li a[href*="instagram.com"],
.obb-menu li a[href*="stackexchange.com"], .obb-menu li a[href*="spotify.com"],
.obb-menu li a[href*="amazon.com"], .obb-menu li a[href*="flickr.com"],
.obb-menu li a[href*="vimeo.com"], .obb-menu li a[href*="yelp.com"],
.obb-menu li a[href*="mailto:"], .obb-menu li a[href$="/feed/"],
.obb-menu li a[href*="soundcloud.com"], .obb-menu li a[href*="bandcamp.com"],
.obb-menu li a[href*="etsy.com"], .obb-menu li a[href*="tiktok.com"] {
	font-size: 16px;
	text-align: center;
	margin: 0;
}
.obb-menu li a[href*="twitch.tv"] span, .obb-menu li a[href*="reddit.com"] span,
.obb-menu li a[href*="snapchat.com"] span, .obb-menu li a[href*="medium.com"] span,
.obb-menu li a[href*="tumblr.com"] span, .obb-menu li a[href*="apple.com"] span,
.obb-menu li a[href*="facebook.com"] span, .obb-menu li a[href*="twitter.com"] span,
.obb-menu li a[href*="google.com"] span, .obb-menu li a[href*="linkedin.com"] span,
.obb-menu li a[href*="github.com"] span, .obb-menu li a[href*="dribbble.com"] span,
.obb-menu li a[href*="foursquare.com"] span, .obb-menu li a[href*="pinterest.com"] span,
.obb-menu li a[href*="wordpress.com"] span, .obb-menu li a[href*="youtube.com"] span,
.obb-menu li a[href*="vine.co"] span, .obb-menu li a[href*="instagram.com"] span,
.obb-menu li a[href*="stackexchange.com"] span, .obb-menu li a[href*="spotify.com"] span,
.obb-menu li a[href*="amazon.com"] span, .obb-menu li a[href*="flickr.com"] span,
.obb-menu li a[href*="vimeo.com"] span, .obb-menu li a[href*="yelp.com"] span,
.obb-menu li a[href*="mailto:"] span, .obb-menu li a[href$="/feed/"] span,
.obb-menu li a[href*="soundcloud.com"] span, .obb-menu li a[href*="bandcamp.com"] span,
.obb-menu li a[href*="etsy.com"] span, .obb-menu li a[href*="wa.me"] span,
.obb-menu li a[href*="whatsapp.com"] span, .obb-menu li a[href*="m.me"] span,
.obb-menu li a[href*="messenger.com"] span, .obb-menu li a[href*="tel:"] span,
.obb-menu li a[href*="tiktok.com"] span, .obb-menu li a[href*="discord.gg"] span,
.obb-menu li a[href*="telegram.org"] span, .obb-menu li a[href*="t.me"] span {
	display: none;
}
.obb-menu li a[href*="twitch.tv"]::before, .obb-menu li a[href*="reddit.com"]::before,
.obb-menu li a[href*="snapchat.com"]::before, .obb-menu li a[href*="medium.com"]::before,
.obb-menu li a[href*="tumblr.com"]::before, .obb-menu li a[href*="apple.com"]::before,
.obb-menu li a[href*="facebook.com"]::before, .obb-menu li a[href*="twitter.com"]::before,
.obb-menu li a[href*="google.com"]::before, .obb-menu li a[href*="linkedin.com"]::before,
.obb-menu li a[href*="github.com"]::before, .obb-menu li a[href*="dribbble.com"]::before,
.obb-menu li a[href*="foursquare.com"]::before, .obb-menu li a[href*="pinterest.com"]::before,
.obb-menu li a[href*="wordpress.com"]::before, .obb-menu li a[href*="youtube.com"]::before,
.obb-menu li a[href*="vine.co"]::before, .obb-menu li a[href*="instagram.com"]::before,
.obb-menu li a[href*="stackexchange.com"]::before, .obb-menu li a[href*="spotify.com"]::before,
.obb-menu li a[href*="amazon.com"]::before, .obb-menu li a[href*="flickr.com"]::before,
.obb-menu li a[href*="vimeo.com"]::before, .obb-menu li a[href*="yelp.com"]::before,
.obb-menu li a[href*="mailto:"]::before, .obb-menu li a[href$="/feed/"]::before,
.obb-menu li a[href*="soundcloud.com"]::before, .obb-menu li a[href*="bandcamp.com"]::before,
.obb-menu li a[href*="etsy.com"]::before, .obb-menu li a[href*="tiktok.com"]::before {
	font-weight: 400;
}
.obb-navigation.secondary .obb-menu li a[href*="twitter.com"]:hover {
	background: #00aced !important;
}
.obb-navigation.secondary .obb-menu li a[href*="facebook.com"]:hover {
	background: #3b5998 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="google.com"]:hover {
	background: #dd4b39 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="linkedin.com"]:hover {
	background: #007bb6 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="pinterest.com"]:hover {
	background: #cb2027 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="youtube.com"]:hover {
	background: #bb0000 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="instagram.com"]:hover {
	background: #517fa4 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="dribbble.com"]:hover {
	background: #ea4c89 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="foursquare.com"]:hover {
	background: #0072b1 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="yelp.com"]:hover {
	background: #d32323 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="etsy.com"]:hover {
	background: #d5641c !important;
}
.obb-navigation.secondary .obb-menu li a[href*="reddit.com"]:hover {
	background: #ff4500 !important;
}
.obb-navigation.secondary .obb-menu li a[href*="github.com"]:hover {
	background: #171515 !important;
}
.obb-menu li a::before {
	transition: color .25s ease-out;
}
.obb-navigation.secondary .obb-menu li a[href*="twitter.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="facebook.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="google.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="linkedin.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="pinterest.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="youtube.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="instagram.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="dribbble.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="foursquare.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="yelp.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="etsy.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="github.com"]:hover::before,
.obb-navigation.secondary .obb-menu li a[href*="reddit.com"]:hover::before {
	color: #ffffff;
}

/************************************************
	Mobile Styles
************************************************/

@media screen and (max-width: 768px) {
	.obb-columns-2,
	.obb-columns-3,
	.obb-columns-4,
	.obb-columns-5,
	.obb-columns-6,
	.obb-masonry-wrapper.obb-columns-2,
	.obb-masonry-wrapper.obb-columns-3,
	.obb-masonry-wrapper.obb-columns-4,
	.obb-masonry-wrapper.obb-columns-5,
	.obb-masonry-wrapper.obb-columns-6 {
		float: none;
		width: 100% !important;
	}
	.obb-columns-2 .obb-content,
	.obb-columns-3 .obb-content,
	.obb-columns-4 .obb-content,
	.obb-columns-5 .obb-content,
	.obb-columns-6 .obb-content {
		margin-left: 0px !important;
		margin-right: 0px !important;
	}
}
@font-face{font-family:swiper-icons;font-style:normal;font-weight:400;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")}:host{display:block;margin-left:auto;margin-right:auto;position:relative;z-index:1}.swiper{display:block;list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{box-sizing:initial;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:ease;width:100%;z-index:1}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{display:block;flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{backface-visibility:hidden;transform:translateZ(0)}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-3d .swiper-slide-shadow{background:#00000026}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,#00000080,#0000)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,#00000080,#0000)}.swiper-lazy-preloader{border:4px solid #007aff;border-radius:50%;border-top-color:#0000;box-sizing:border-box;height:42px;left:50%;margin-left:-21px;margin-top:-21px;position:absolute;top:50%;transform-origin:50%;width:42px;z-index:10}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper:after{content:"";left:0;pointer-events:none;position:absolute;top:0}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}.swiper-button-next,.swiper-button-prev{align-items:center;color:#007aff;cursor:pointer;display:flex;height:44px;justify-content:center;margin-top:-22px;position:absolute;top:50%;width:27px;z-index:10}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center;width:100%}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:44px;font-variant:normal;letter-spacing:0;line-height:1;text-transform:none!important}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-rtl .swiper-button-prev{left:auto;right:10px}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}.swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:8px;left:0;top:auto;width:100%}.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{background:#000;border-radius:50%;display:inline-block;height:8px;opacity:.2;width:8px}button.swiper-pagination-bullet{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{background:#007aff;opacity:1}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{left:auto;right:8px;top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:6px 0}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,left .2s}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-pagination-fraction{color:inherit}.swiper-pagination-progressbar{background:#00000040;position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;height:100%;left:0;position:absolute;top:0;transform:scale(0);transform-origin:left top;width:100%}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{height:4px;left:0;top:0;width:100%}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{height:100%;left:0;top:0;width:4px}.swiper-pagination-lock{display:none}.swiper-scrollbar{background:#0000001a;border-radius:10px;position:relative;touch-action:none}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{bottom:4px;height:4px;left:1%;position:absolute;top:auto;width:98%;z-index:50}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{height:98%;left:auto;position:absolute;right:4px;top:1%;width:4px;z-index:50}.swiper-scrollbar-drag{background:#00000080;border-radius:10px;height:100%;left:0;position:relative;top:0;width:100%}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{backface-visibility:hidden;height:100%;pointer-events:none;transform-origin:0 0;visibility:hidden;width:100%;z-index:1}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{bottom:0;height:100%;left:0;opacity:.6;position:absolute;width:100%;z-index:0}.swiper-cube .swiper-cube-shadow:before{background:#000;bottom:0;content:"";filter:blur(50px);left:0;position:absolute;right:0;top:0}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{backface-visibility:hidden;pointer-events:none;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{backface-visibility:hidden;overflow:hidden;transform-origin:center bottom}:root {
	--jp-carousel-primary-color: #fff;
	--jp-carousel-primary-subtle-color: #999;
	--jp-carousel-bg-color: #000;
	--jp-carousel-bg-faded-color: #222;
	--jp-carousel-border-color: #3a3a3a;
}

:root .jp-carousel-light {
	--jp-carousel-primary-color: #000;
	--jp-carousel-primary-subtle-color: #646970;
	--jp-carousel-bg-color: #fff;
	--jp-carousel-bg-faded-color: #fbfbfb;
	--jp-carousel-border-color: #dcdcde;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-rtl .swiper-button-next,
.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-rtl .swiper-button-prev {
	background-image: none;
}

/* end of temporary fix */

[data-carousel-extra]:not(.jp-carousel-wrap) img,
[data-carousel-extra]:not(.jp-carousel-wrap) img + figcaption {
	cursor: pointer;
}

.jp-carousel-wrap * {
	line-height: inherit;
}

.jp-carousel-wrap.swiper {
	height: auto;
	width: 100vw;
}

.jp-carousel-overlay .swiper-zoom-container {
	background-size: 200%;
	background-repeat: no-repeat;
	background-position: center;
}

/*
To prevent flash of prev/next image scale transition after pinch zoom we need
to hide them. Swiper does not add a class of `swiper-slide-zoomed` to slides
on pinch and zoom so we have to target all affected elements in touch devices.
*/
.jp-carousel-overlay .swiper-slide.swiper-slide-prev .swiper-zoom-container img,
.jp-carousel-overlay .swiper-slide.swiper-slide-next .swiper-zoom-container img {
	transition: none !important;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-button-next {
	opacity: 0.5;
	transition: 0.5s opacity ease-out;
	height: initial;
	width: initial;
	padding: 20px 40px;
	background-image: none;
}

.jp-carousel-overlay .swiper-button-prev:hover,
.jp-carousel-overlay .swiper-button-next:hover {
	opacity: 1;
}

.jp-carousel-overlay .swiper-button-next::after,
.jp-carousel-overlay .swiper-rtl .swiper-button-next::after,
.jp-carousel-overlay .swiper-button-prev::after,
.jp-carousel-overlay .swiper-rtl .swiper-button-prev::after {
	content: none;
}

.jp-carousel-overlay .swiper-button-prev svg,
.jp-carousel-overlay .swiper-button-next svg {
	height: 30px;
	width: 28px;
	background: var(--jp-carousel-bg-color);
	border-radius: 4px;
}

.jp-carousel-overlay .swiper-button-prev svg:hover,
.jp-carousel-overlay .swiper-button-next svg:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-overlay {
	font-family: "Helvetica Neue", sans-serif !important;
	z-index: 2147483647;
	overflow-x: hidden;
	overflow-y: auto;
	direction: ltr;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--jp-carousel-bg-color);
}

.jp-carousel-overlay * {
	box-sizing: border-box;
}

/* Fix for Twenty Nineteen theme compatibility */
.jp-carousel-overlay h1::before,
.jp-carousel-overlay h2::before,
.jp-carousel-overlay h3::before {
	content: none;
	display: none;
}

.jp-carousel-overlay .swiper .swiper-button-prev {
	left: 0;
	right: auto;
}

.jp-carousel-overlay .swiper .swiper-button-next {
	right: 0;
	left: auto;
}

.jp-carousel-overlay .swiper.swiper-rtl .swiper-button-prev,
.jp-carousel-overlay .swiper.swiper-rtl .swiper-button-next {
	transform: scaleX(-1);
}

.jp-carousel-container {
	display: grid;
	grid-template-rows: 1fr 64px; /* 1. main carousel, 2. info area as footer */
	height: 100%;
}

.jp-carousel-hide-controls .jp-carousel-container {
	grid-template-rows: 1fr;
}

.jp-carousel-hide-controls .swiper-wrapper {
	margin-top: -32px; /* Compensate for the remove of the height of the info bar. */
}


.jp-carousel-hide-controls .jp-swiper-button-next,
.jp-carousel-hide-controls .jp-swiper-button-prev {
	margin-top: -54px; /* The height of the info bar plus any top padding on the nav button itself. */
}

.jp-carousel-msg {
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	display: inline-block;
	line-height: 19px;
	padding: 11px 15px;
	font-size: 14px;
	text-align: center;
	margin: 25px 20px 0 2px;
	background-color: var(--jp-carousel-primary-color);
	border-left: 4px solid #ffba00;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.jp-carousel-info {
	display: flex;
	flex-direction: column;
	text-align: left !important;
	-webkit-font-smoothing: subpixel-antialiased !important;
	z-index: 100;
	background-color: var(--jp-carousel-bg-color);
	transition: opacity 200ms ease-out;
	opacity: 1;
}

.jp-carousel-hide-controls .jp-carousel-info {
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

.jp-carousel-info-footer {
	position: relative;
	background-color: var(--jp-carousel-bg-color);
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100vw;
}

.jp-carousel-info-extra {
	display: none;
	background-color: var(--jp-carousel-bg-color);
	padding: 35px;
	width: 100vw;
	border-top: 1px solid var(--jp-carousel-bg-faded-color);
}

.jp-carousel-title-and-caption {
	margin-bottom: 15px;
}

.jp-carousel-info-extra.jp-carousel-show {
	display: block;
}

.jp-carousel-info ::selection {
	background: var(--jp-carousel-primary-color); /* Safari */
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-info ::-moz-selection {
	background: var(--jp-carousel-primary-color); /* Firefox */
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-photo-info {
	left: 0 !important;
	width: 100% !important;
}

.jp-carousel-comments-wrapper {
	padding: 0;
	width: 100% !important;
	display: none;
}

.jp-carousel-comments-wrapper.jp-carousel-show {
	display: block;
}

.jp-carousel-comments-wrapper > .jp-carousel-photo-info {
	display: none;
}

.jp-carousel-transitions .jp-carousel-photo-info {
	transition: 400ms ease-out;
}

.jp-carousel-buttons {
	margin: -18px -20px 15px;
	padding: 8px 10px;
	border-bottom: 1px solid #222;
	background: #222;
	text-align: center;
}

div.jp-carousel-buttons a {
	border: none !important;
	color: var(--jp-carousel-primary-subtle-color);
	font: 400 11px/1.2em "Helvetica Neue", sans-serif !important;
	letter-spacing: 0 !important;
	padding: 5px 2px 5px 0;
	text-decoration: none !important;
	text-shadow: none !important;
	vertical-align: middle;
	-webkit-font-smoothing: subpixel-antialiased;
}

div.jp-carousel-buttons a:hover {
	color: var(--jp-carousel-primary-color);
	border: none !important;
}

.jp-carousel-transitions div.jp-carousel-buttons a:hover {
	transition: none !important;
}

.jp-carousel-slide,
.jp-carousel-slide img {
	transform: translate3d(0, 0, 0);
}

.jp-carousel-close-hint {
	letter-spacing: 0 !important;
	position: fixed;
	top: 20px;
	right: 30px;
	padding: 10px;
	text-align: right;
	width: 45px;
	height: 45px;
	z-index: 15;
	color: var(--jp-carousel-primary-color);
	cursor: pointer;
	transition: opacity 200ms ease-out;
}

.jp-carousel-transitions .jp-carousel-close-hint {
	transition: color 200ms linear;
}

.jp-carousel-close-hint svg {
	padding: 3px 2px;
	background: var(--jp-carousel-bg-color);
	border-radius: 4px;
}

.jp-carousel-close-hint svg:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-close-hint:hover {
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-close-hint:hover span {
	border-color: var(--jp-carousel-primary-color);
}

/** Pagination Start **/
.jp-carousel-pagination-container {
	flex: 1;
	margin: 0 15px 0 35px;
}

.jp-swiper-pagination,
.jp-carousel-pagination {
	color: var(--jp-carousel-primary-color);
	font-size: 15px; /* same as .jp-carousel-info-footer .jp-carousel-photo-title  */
	font-weight: 400;
	white-space: nowrap;
	display: none;
	position: static !important;
}

.jp-carousel-pagination-container .swiper-pagination {
	text-align: left;
	line-height: 8px;
}

.jp-carousel-pagination {
	padding-left: 5px;
}

.jp-swiper-pagination .swiper-pagination-bullet {
	background: var(--jp-carousel-primary-subtle-color);
	margin: 0 4px;
}

.jp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--jp-carousel-primary-color);
}

.jp-swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background: var(--jp-carousel-primary-color);
	opacity: 0.5;
}

/** Pagination End **/

/** Title and Desc Start **/
.jp-carousel-info-footer .jp-carousel-photo-title-container {
	flex: 4;
	justify-content: center;
	overflow: hidden;
	margin: 0;
}

.jp-carousel-photo-title,
.jp-carousel-photo-caption {
	background: none !important;
	border: none !important;
	display: inline-block;
	font: 400 20px/1.3em "Helvetica Neue", sans-serif;
	line-height: normal;
	letter-spacing: 0 !important;
	margin: 0 0 10px 0;
	padding: 0;
	overflow: hidden;
	text-shadow: none !important;
	text-transform: none !important;
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-info-footer .jp-carousel-photo-caption {
	text-align: center;
	font-size: 15px; /* same as .jp-carousel-pagination */
	white-space: nowrap;
	color: var(--jp-carousel-primary-subtle-color);
	cursor: pointer;
	margin: 0;
	text-overflow: ellipsis;
}

.jp-carousel-info-footer .jp-carousel-photo-caption p {
	margin: 0;
}

.jp-carousel-photo-title {
	font-size: 32px;
	margin-bottom: 2px;
}

.jp-carousel-photo-description {
	color: var(--jp-carousel-primary-subtle-color);
	font-size: 16px;
	margin: 25px 0;
	width: 100%;
	overflow: hidden;
	overflow-wrap: break-word;
}

.jp-carousel-photo-description p {
	color: var(--jp-carousel-primary-subtle-color);
	line-height: 1.4;
	margin-bottom: 0;
}

.jp-carousel-photo-description p a,
.jp-carousel-comments p a,
.jp-carousel-info h2 a {
	color: var(--jp-carousel-primary-color) !important;
	border: none !important;
	text-decoration: underline !important;
	font-weight: 400 !important;
	font-style: normal !important;
}

.jp-carousel-photo-description p strong,
.jp-carousel-photo-description p b {
	font-weight: 700;
	color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p em,
.jp-carousel-photo-description p i {
	font-style: italic;
	color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p a:hover,
.jp-carousel-comments p a:hover,
.jp-carousel-info h2 a:hover {
	color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-photo-description p:empty {
	display: none;
}

.jp-carousel-photo-info h1::before,
.jp-carousel-photo-info h1::after,
.jp-carousel-comments-wrapper h1::before,
.jp-carousel-comments-wrapper h1::after {
	content: none !important;
}

.jp-carousel-caption {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}

/** Title and Desc End **/

/** Meta Box Start **/
.jp-carousel-image-meta {
	color: var(--jp-carousel-primary-color);
	font: 12px/1.4 "Helvetica Neue", sans-serif !important;
	width: 100%;
	display: none;
}

.jp-carousel-image-meta.jp-carousel-show {
	display: block;
}

.jp-carousel-image-meta li,
.jp-carousel-image-meta h5 {
	font-family: "Helvetica Neue", sans-serif !important;
	position: inherit !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	bottom: auto !important;
	background: none !important;
	border: none !important;
	font-weight: 400 !important;
	/* stylelint-disable-next-line declaration-property-unit-allowed-list -- this should be changed to a unitless value: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/css/#values */
	line-height: 1.3em !important;
}

.jp-carousel-image-meta ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.jp-carousel-image-meta li {
	width: 48% !important;
	display: inline-block !important;
	vertical-align: top !important;
	margin: 0 2% 15px 0 !important;
	color: var(--jp-carousel-primary-color) !important;
	font-size: 13px !important;
}

.jp-carousel-image-meta h5 {
	color: var(--jp-carousel-primary-subtle-color) !important;
	text-transform: uppercase !important;
	font-size: 10px !important;
	margin: 0 0 2px !important;
	letter-spacing: 0.1em !important;
}

a.jp-carousel-image-download {
	display: inline-block;
	clear: both;
	color: var(--jp-carousel-primary-subtle-color);
	line-height: 1;
	font-weight: 400;
	font-size: 14px;
	text-decoration: none;
}

a.jp-carousel-image-download svg {
	display: inline-block;
	vertical-align: middle;
	margin: 0 3px;
	padding-bottom: 2px;
}

a.jp-carousel-image-download span.photo-size {
	font-size: 11px;
	border-radius: 1em;
	margin-left: 2px;
	display: inline-block;
}

a.jp-carousel-image-download span.photo-size-times {
	padding: 0 1px 0 2px;
}

/** Meta Box End **/

/** Comments Start **/
.jp-carousel-comments {
	font: 15px/1.7 "Helvetica Neue", sans-serif !important;
	font-weight: 400;
	background: none transparent;
	width: 100%;
	bottom: 10px;
	margin-top: 20px;
}

.jp-carousel-comments p a:hover,
.jp-carousel-comments p a:focus,
.jp-carousel-comments p a:active {
	color: var(--jp-carousel-primary-color) !important;
}

.jp-carousel-comment {
	background: none transparent;
	color: var(--jp-carousel-primary-subtle-color);
	overflow: auto;
	width: 100%;
	display: flex;
}

.jp-carousel-comment + .jp-carousel-comment {
	margin-top: 20px;
}

.jp-carousel-comment:last-of-type {
	margin-bottom: 20px;
}

.jp-carousel-comment p {
	color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-comment .comment-author {
	font-size: 15px;
	font-weight: 500;
	padding: 0;
	width: auto;
	display: inline;
	float: none;
	border: none;
	margin: 0;
}

.jp-carousel-comment .comment-author a {
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-comment .comment-gravatar {
	float: none;
	margin-right: 10px;
}

.jp-carousel-comment .comment-content {
	border: none;
	padding: 0;
}

.jp-carousel-comment .avatar {
	margin: 0;
	border-radius: 4px;
	border: none !important;
	padding: 0 !important;
	background-color: transparent !important;
	min-width: 64px;
	min-height: 64px;
	width: 64px;
	height: 64px;
}

.jp-carousel-comment .comment-date {
	color: var(--jp-carousel-primary-subtle-color);
	font-size: 11px;
	border-bottom: 1px solid var(--jp-carousel-bg-faded-color);
	margin-bottom: 6px;
}

#jp-carousel-comment-form {
	margin: 0 0 10px !important;
	width: 100%;
}

#jp-carousel-comment-form.jp-carousel-is-disabled {
	opacity: 0.5;
	pointer-events: none;
}

textarea#jp-carousel-comment-form-comment-field {
	background: var(--jp-carousel-bg-faded-color);
	border: 1px solid var(--jp-carousel-border-color);
	color: var(--jp-carousel-primary-subtle-color);
	font: 16px/1.4 "Helvetica Neue", sans-serif !important;
	width: 100%;
	padding: 10px 10px 5px;
	margin: 0;
	float: none;
	height: 147px;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	overflow: hidden;
	box-sizing: border-box;
}

textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder {
	color: #555;
}

textarea#jp-carousel-comment-form-comment-field:focus {
	background: var(--jp-carousel-bg-faded-color);
	color: var(--jp-carousel-primary-subtle-color);
}

textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder {
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-loading-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#jp-carousel-loading-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}

#jp-carousel-library-loading,
#jp-carousel-library-loading::after {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

#jp-carousel-library-loading {
	float: left;
	margin: 22px 0 0 10px;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 8px solid rgba(255, 255, 255, 0.2);
	border-right: 8px solid rgba(255, 255, 255, 0.2);
	border-bottom: 8px solid rgba(255, 255, 255, 0.2);
	border-left: 8px solid var(--jp-carousel-primary-color);
	transform: translateZ(0);
	animation: load8 1.1s infinite linear;
}

#jp-carousel-comment-form-spinner,
#jp-carousel-comment-form-spinner::after {
	border-radius: 50%;
	width: 20px;
	height: 20px;
}

#jp-carousel-comment-form-spinner {
	display: none;
	float: left;
	font-size: 10px;
	position: absolute; /* relative to .jp-carousel-comment-form-container */
	text-indent: -9999em;
	border-top: 4px solid rgba(255, 255, 255, 0.2);
	border-right: 4px solid rgba(255, 255, 255, 0.2);
	border-bottom: 4px solid rgba(255, 255, 255, 0.2);
	border-left: 4px solid var(--jp-carousel-primary-color);
	transform: translateZ(0);
	animation: load8 1.1s infinite linear;
	margin: 0 auto;
	top: calc(50% - 15px);
	left: 0;
	bottom: 0;
	right: 0;
}

@keyframes load8 {

	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.jp-carousel-info-content-wrapper {
	max-width: 800px;
	margin: auto;
}

#jp-carousel-comment-form-submit-and-info-wrapper {
	display: none;
	overflow: hidden;
	width: 100%;
}

#jp-carousel-comment-form-commenting-as input {
	background: var(--jp-carousel-bg-color);
	border: 1px solid var(--jp-carousel-border-color);
	color: var(--jp-carousel-primary-subtle-color);
	font: 16px/1.4 "Helvetica Neue", sans-serif !important;
	padding: 10px;
	float: left;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	width: 285px;
}

#jp-carousel-comment-form-commenting-as input:focus {
	background: var(--jp-carousel-bg-faded-color);
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comment-form-commenting-as p {
	font: 400 13px/1.7 "Helvetica Neue", sans-serif !important;
	margin: 22px 0 0;
	float: left;
}

#jp-carousel-comment-form-commenting-as fieldset {
	float: left;
	border: none;
	margin: 20px 0 0 0;
	padding: 0;
	clear: both;
}

#jp-carousel-comment-form-commenting-as label {
	font: 400 13px/1.7 "Helvetica Neue", sans-serif !important;
	margin: 0 20px 3px 0;
	float: left;
	width: 100px;
}

#jp-carousel-comment-form-button-submit {
	margin-top: 20px;
	margin-left: auto;
	display: block;
	border: solid 1px var(--jp-carousel-primary-color);
	background: var(--jp-carousel-bg-color);
	border-radius: 3px;
	padding: 8px 16px;
	font-size: 14px;
	color: var(--jp-carousel-primary-color);
}

#jp-carousel-comment-form-button-submit:active,
#jp-carousel-comment-form-button-submit:focus {
	background: var(--jp-carousel-primary-color);
	color: var(--jp-carousel-bg-color);
}

#jp-carousel-comment-form-container {
	margin-bottom: 15px;
	width: 100%;
	margin-top: 20px;
	color: var(--jp-carousel-primary-subtle-color);
	position: relative;
	overflow: hidden;
}

#jp-carousel-comment-post-results {
	display: none;
	overflow: auto;
	width: 100%;
}

#jp-carousel-comment-post-results span {
	display: block;
	text-align: center;
	margin-top: 20px;
	width: 100%;
	overflow: auto;
	padding: 1em 0;
	box-sizing: border-box;
	border-radius: 2px;
	font: 13px/1.4 "Helvetica Neue", sans-serif !important;
	border: 1px solid var(--jp-carousel-border-color);
	box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.jp-carousel-comment-post-error {
	color: #df4926;
}

#jp-carousel-comments-closed {
	display: none;
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comments-loading {
	font: 400 15px/1.7 "Helvetica Neue", sans-serif !important;
	display: none;
	color: var(--jp-carousel-primary-subtle-color);
	text-align: left;
	margin-bottom: 20px;
	width: 100%;
	bottom: 10px;
	margin-top: 20px;
}

/** Icons Start **/
.jp-carousel-photo-icons-container {
	flex: 1;
	display: block;
	text-align: right;
	margin: 0 20px 0 30px;
	white-space: nowrap;
}

.jp-carousel-icon-btn {
	padding: 16px;
	text-decoration: none;
	border: none;
	background: none;
	display: inline-block;
	height: 64px;
}

.jp-carousel-icon {
	border: none;
	display: inline-block;
	line-height: 0;
	font-weight: 400;
	font-style: normal;
	border-radius: 4px;
	width: 31px; /* Prevent comments indicator from changing icon width */
	padding: 4px 3px 3px;
}

.jp-carousel-icon:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-icon svg {
	display: inline-block;
}

.jp-carousel-overlay rect {
	fill: var(--jp-carousel-primary-color);
}

.jp-carousel-selected .jp-carousel-icon {
	background: var(--jp-carousel-primary-color);
}

.jp-carousel-selected rect {
	fill: var(--jp-carousel-bg-color);
}

.jp-carousel-icon-comments.jp-carousel-show {
	display: inline-block;
}

.jp-carousel-icon .jp-carousel-has-comments-indicator {
	display: none;
	font-size: 12px;
	vertical-align: top;
	margin-left: -16px;
	line-height: 1;
	padding: 2px 4px;
	border-radius: 4px;
	background: var(--jp-carousel-primary-color);
	color: var(--jp-carousel-bg-color);
	font-weight: 400;
	font-family: "Helvetica Neue", sans-serif !important;
	position: relative;
}

.jp-carousel-selected .jp-carousel-icon .jp-carousel-has-comments-indicator {
	background: var(--jp-carousel-bg-color);
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-has-comments-indicator.jp-carousel-show {
	display: inline-block;
}

/** Icons End **/

/* Small screens */
@media only screen and ( max-width: 760px ) {

	.jp-carousel-overlay .swiper .swiper-button-next,
	.jp-carousel-overlay .swiper .swiper-button-prev {
		display: none !important;
	}

	.jp-carousel-buttons {
		display: none !important;
	}

	.jp-carousel-image-meta {
		float: none !important;
		width: 100% !important;
		box-sizing: border-box;
		margin-left: 0;
	}

	.jp-carousel-close-hint {
		font-size: 26px !important;
		position: fixed !important;
		top: 10px;
		right: 10px;
	}

	/* The admin bar is fixed at top: 0*/
	.admin-bar .jp-carousel-close-hint {
		top: 40px;
	}

	.jp-carousel-slide img {
		opacity: 1;
	}

	.jp-carousel-wrap {
		background-color: var(--jp-carousel-bg-color);
	}

	.jp-carousel-fadeaway {
		display: none;
	}

	.jp-carousel-info > .jp-carousel-photo-info {
		display: none;
	}

	.jp-carousel-comments-wrapper > .jp-carousel-photo-info {
		display: block;
	}

	.jp-carousel-caption {
		overflow: visible !important;
	}

	.jp-carousel-info-footer .jp-carousel-photo-title-container {
		display: none;
	}

	.jp-carousel-photo-icons-container {
		margin: 0 10px 0 0;
		white-space: nowrap;
	}

	.jp-carousel-icon-btn {
		padding-left: 20px;
	}

	.jp-carousel-pagination {
		padding-left: 5px;
	}

	.jp-carousel-pagination-container {
		margin-left: 25px;
	}

	.jp-carousel-comment .avatar {
		min-width: 48px;
	}

	#jp-carousel-comment-form-commenting-as fieldset,
	#jp-carousel-comment-form-commenting-as input {
		width: 100%;
		float: none;
	}
}
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}
/*
Theme Name: Organic STAX
Theme URI: https://www.organicthemes.com/theme/stax-theme
Author: Organic Themes
Author URI: https://organicthemes.com/
Description: STAX is a WordPress block theme designed for the full-site editor. Every element of the theme can easily be customized within the WordPress site editor.
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.6.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: organic-stax
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments
STAX is distributed under the terms of the GNU GPL.
 * Woo: 18734001503892:99142b9675046071bdede927a3ace803

*/

/************************************************
 Defaults
************************************************/

body {
	margin: 0;
	animation: fadein ease-in 1s;
  	animation-iteration-count: 1;
  	animation-fill-mode: forwards;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/************************************************
 Global
************************************************/

p {
	word-wrap: break-word;
	padding: 0;
}
p:empty {
	display: none;
}
dfn, cite, em, i {
	font-style: italic;
}
strong, b {
	font-weight: bold;
}
big {
	font-size: 140%;
}
small {
	font-size: 60%;
}
s {
	text-decoration: line-through;
}
mark {
	background: #ff0;
	color: #000;
}
sub, sup {
	font-size: 60%;
	font-weight: 400;
	position: relative;
}
sup {
	top: 0;
	vertical-align: super;
}
sub {
	bottom: 0;
	vertical-align: baseline;
}
ol, ul {
	list-style: none;
	padding: 0;
}
ol li {
	list-style: inside;
	list-style-type: decimal;
	margin: 6px 0px;
	padding: 0px 0px 0px 12px;
}
ul li {
	list-style: inside;
	list-style-type: disc;
	margin: 6px 0px;
	padding: 0px 0px 0px 12px;
}
ul ol li, ul ol ul ol li {
	list-style-type: decimal;
}
ol ul li, ol ul ol ul li {
	list-style-type: square;
}
blockquote {
	box-sizing: border-box;
}
code, pre {
	display: block;
	white-space: pre-line;
	box-sizing: border-box;
}
pre code {
	margin: 0;
	padding: 0;
	border: none;
	box-shadow: none;
}
img {
	-ms-interpolation-mode: bicubic;
	height: auto;
}
img, object, embed, iframe {
	max-width: 100%;
	line-height: 0;
	margin: 0 auto 0;
}

/************************************************
 Links
************************************************/

a {
	cursor: pointer;
	text-underline-offset: 3px;
	text-decoration-skip-ink: all;
	scroll-behavior: smooth;
}
a, button, .button, .wp-block-button__link  {
	transition: all .25s ease-in-out;
}

/************************************************
 Elements
************************************************/

.site-header,
.site-main,
.site-footer {
	margin-top: 0 !important;
}
.site-banner .post-meta {
	text-align: center;
}
.single .post-date-and-author,
.site-banner .post-date-and-author {
	justify-content: center;
	margin-top: 12px;
}
.site-banner .wp-block-post-author__avatar {
	background: #ffffff;
	border: none;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.24);
}
.site-banner .wp-block-post-author__content {
	margin-top: 0;
}
.page .site-banner .post-date-and-author {
	display: none;
}
.site-main > .entry-content {
	margin-top: 0;
}
.site-logo-wrapper {
	position: relative;
}
.site-logo-wrapper > .wp-block-site-logo {
	position: relative;
	z-index: 99;
	opacity: 1;
}
.site-logo-wrapper > .site-logo-alt {
	margin: 0;
	z-index: 8;
	opacity: 0;
}

/************************************************
 Page Templates
************************************************/

.page-template-template-blank .entry-content > .alignfull {
	margin-top: 0;
	margin-bottom: 0;
}

/************************************************
 Header Setup
************************************************/

.site-header .header-wrapper {
	width: 100%;
	box-sizing: border-box !important;
	z-index: 99;
}
.site-header .is-transparent {
	transition: background .15s ease-in-out;
}
.site-header .is-transparent:not(.scrolling) {
	background: transparent !important;
	border-bottom: none !important;
}
.site-header .is-transparent:not(.scrolling) .wp-block-site-title,
.site-header .is-transparent:not(.scrolling) .wp-block-site-title a {
	color: #ffffff;
}
.site-header .is-transparent .site-logo-wrapper.logo-alt-exists > .wp-block-site-logo,
.site-header .is-transparent.scrolling .site-logo-wrapper.logo-alt-exists > .site-logo-alt {
	opacity: 0;
}
.site-header .is-transparent .site-logo-wrapper.logo-alt-exists > .site-logo-alt,
.site-header .is-transparent.scrolling .site-logo-wrapper.logo-alt-exists > .wp-block-site-logo {
	opacity: 1;
}
@media screen and (min-width: 600px) {
	.site-header .is-transparent:not(.scrolling) .wp-block-navigation__container > .wp-block-navigation-item > a {
		color: #ffffff;
	}
}
.site-header .is-transparent:not(.scrolling) .wp-block-navigation__container > li > .wp-block-navigation__submenu-icon > svg {
	stroke: #ffffff;
}
.site-header .is-transparent:not(.scrolling) .wp-block-navigation__responsive-container-open svg {
	fill: #ffffff;
}
.site-header .is-transparent:not(.scrolling) .wc-block-mini-cart__icon,
.site-header .is-transparent:not(.scrolling) .wc-block-mini-cart__icon circle,
.site-header .is-transparent:not(.scrolling) .wc-block-mini-cart__icon path {
	color: #ffffff;
	fill: #ffffff;
}
.site-header .is-transparent:not(.scrolling) .wc-block-mini-cart__badge {
	color: #000000;
	background: #ffffff;
}
.site-header + .wp-block-group.woocommerce {
	margin-block-start: 0;
}

/************************************************
	Navigation Menus
************************************************/

.wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container .wp-block-navigation__submenu-container {
	padding: 12px;
	border: none !important;
	border-radius: 3px;
	box-sizing: border-box;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
	transition-delay: .2s;
	-webkit-transition-delay: .2s;
	z-index: 99;
}
.wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container .has-child:hover .wp-block-navigation__submenu-container {
	min-width: 240px !important;
}
.wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container > .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
	margin-top: 12px;
	left: 50%;
	transform: translateX(-50%);
}
.wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation__submenu-container::after {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -4px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #ffffff;
}
.wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
	top: 0;
	margin-top: -12px;
}
/* Widen Submenu Boundaries */
.wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container .wp-block-navigation__submenu-container::before {
	position: absolute;
	top: -12px; left: -36px;
	width: 100%; height: 100%;
	content: '';
	padding: 72px;
}
.wp-block-navigation__container .wp-block-navigation-item a {
	position: relative;
	text-decoration: none;
}
.wp-block-navigation__container .wp-block-navigation-item:not(.button) a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: var(--wp--preset--color--accent-primary);
	transition: all 0.15s ease-in-out;
}
.wp-block-navigation__container .wp-block-navigation-item:not(.button):hover a::after {
	width: 100%;
}
.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item a {
	font-size: 90%;
}
.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item:not(.button) a::after {
	display: none;
}
.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item {
	background: none;
	margin: 0;
}
.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item:focus,
.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item:hover,
.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item:active {
	background: rgba(0, 0, 0, .04);
	outline: 0;
}
.wp-block-navigation__container button.wp-block-navigation__submenu-icon,
.wp-block-navigation__container button.wp-block-navigation__submenu-icon:hover {
	margin-top: -4px;
	pointer-events: none; /* Disable clicking of dropdown arrow button in favor of hover */
	background: none;
	box-shadow: none;
}
.wp-block-navigation__container > .wp-block-navigation-item.button > a {
	padding: 8px 16px !important;
	border: 2px solid;
	border-radius: 3px;
}

/************************************************
 Navigation Mobile
************************************************/

.wp-block-navigation .wp-block-navigation__responsive-container-open {
	top: 0;
	box-shadow: none;
}
.wp-block-navigation .wp-block-navigation__responsive-container-open svg,
.wp-block-navigation .wp-block-navigation__responsive-container-close svg {
	width: 36px;
	height: 36px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	width: 100%;
}
.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	top: var(--wp--style--block-gap);
	right: var(--wp--style--block-gap);
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	display: none;
	padding-left: 0 !important;
	padding-right: 0 !important;
	opacity: 1;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
	padding: var(--wp--style--block-gap);
	box-sizing: border-box;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item {
	visibility: visible;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-submenu .dropdown-arrow {
	position: absolute;
	top: 4px;
	right: 0;
	max-height: 14px;
	font-weight: 600;
	font-size: 12px;
	line-height: 0;
	margin: 0;
	padding: 6px;
	border: 2px solid;
	border-radius: 3px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-submenu .dropdown-arrow:hover {
	cursor: pointer;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
	display: block;
	width: 100%;
	text-align: left;
	margin: 0;
	box-sizing: border-box;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item::after {
	display: none;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.button {
	margin-top: 12px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container > .wp-block-navigation-item > a {
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container > .wp-block-navigation-item.button > a {
	text-align: center;
	padding: 8px 12px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item {
	padding-left: 12px;
	margin-bottom: 12px;
	margin-top: 12px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item a {
	font-size: 1.2rem;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
	gap: 12px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
	padding-top: 12px;
}

/************************************************
 Social Menu
************************************************/

.wp-block-navigation .wp-block-navigation-item a[href*="facebook.com"]:hover {
	color: #ffffff;
    background: #3b5998;
}
.wp-block-navigation .wp-block-navigation-item a[href*="twitter.com"]:hover,
.wp-block-navigation .wp-block-navigation-item a[href*="x.com"]:hover	{
	color: #ffffff;
	background: #000000;
}
.wp-block-navigation .wp-block-navigation-item a[href*="google.com"]:hover {
	color: #ffffff;
	background: #dd4b39;
}
.wp-block-navigation .wp-block-navigation-item a[href*="linkedin.com"]:hover {
	color: #ffffff;
	background: #007bb6;
}
.wp-block-navigation .wp-block-navigation-item a[href*="pinterest.com"]:hover {
	color: #ffffff;
	background: #cb2027;
}
.wp-block-navigation .wp-block-navigation-item a[href*="youtube.com"]:hover	{
	color: #ffffff;
	background: #bb0000;
}
.wp-block-navigation .wp-block-navigation-item a[href*="instagram.com"]:hover {
	color: #ffffff;
	background: #517fa4;
}
.wp-block-navigation .wp-block-navigation-item a[href*="dribbble.com"]:hover {
	color: #ffffff;
	background: #ea4c89;
}
.wp-block-navigation .wp-block-navigation-item a[href*="foursquare.com"]:hover {
	color: #ffffff;
	background: #0072b1;
}
.wp-block-navigation .wp-block-navigation-item a[href*="yelp.com"]:hover {
	color: #ffffff;
	background: #d32323;
}
.wp-block-navigation .wp-block-navigation-item a[href*="etsy.com"]:hover {
	color: #ffffff;
	background: #d5641c;
}
.wp-block-navigation .wp-block-navigation-item a[href*="reddit.com"]:hover {
	color: #ffffff;
	background: #ff4500;
}
.wp-block-navigation .wp-block-navigation-item a[href*="tiktok.com"]:hover {
	color: #ffffff;
	background: #ff0050;
}
.wp-block-navigation .wp-block-navigation-item a[href*="snapchat.com"]:hover {
	color: #000000;
	background: #FFFC00;
}
.wp-block-navigation .wp-block-navigation-item a[href*="bandcamp.com"]::before      { font-family: 'Font Awesome 6 Brands'; content: '\f2d5'; }
.wp-block-navigation .wp-block-navigation-item a[href*="soundcloud.com"]::before    { font-family: 'Font Awesome 6 Brands'; content: '\f1be'; }
.wp-block-navigation .wp-block-navigation-item a[href*="reddit.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f281'; }
.wp-block-navigation .wp-block-navigation-item a[href*="twitch.tv"]::before         { font-family: 'Font Awesome 6 Brands'; content: '\f1e8'; }
.wp-block-navigation .wp-block-navigation-item a[href*="snapchat.com"]::before      { font-family: 'Font Awesome 6 Brands'; content: '\f2ac'; }
.wp-block-navigation .wp-block-navigation-item a[href*="medium.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f23a'; }
.wp-block-navigation .wp-block-navigation-item a[href*="tumblr.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f173'; }
.wp-block-navigation .wp-block-navigation-item a[href*="apple.com"]::before         { font-family: 'Font Awesome 6 Brands'; content: '\f179'; }
.wp-block-navigation .wp-block-navigation-item a[href*="etsy.com"]::before          { font-family: 'Font Awesome 6 Brands'; content: '\f2d7'; }
.wp-block-navigation .wp-block-navigation-item a[href*="facebook.com"]::before      { font-family: 'Font Awesome 6 Brands'; content: '\f39e'; }
.wp-block-navigation .wp-block-navigation-item a[href*="twitter.com"]::before,
.wp-block-navigation .wp-block-navigation-item a[href*="x.com"]::before       		{ font-family: 'Font Awesome 6 Brands'; content: '\e61b'; }
.wp-block-navigation .wp-block-navigation-item a[href*="tiktok.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\e07b'; }
.wp-block-navigation .wp-block-navigation-item a[href*="google.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f1a0'; }
.wp-block-navigation .wp-block-navigation-item a[href*="linkedin.com"]::before      { font-family: 'Font Awesome 6 Brands'; content: '\f0e1'; }
.wp-block-navigation .wp-block-navigation-item a[href*="github.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f113'; }
.wp-block-navigation .wp-block-navigation-item a[href*="dribbble.com"]::before      { font-family: 'Font Awesome 6 Brands'; content: '\f17d'; }
.wp-block-navigation .wp-block-navigation-item a[href*="foursquare.com"]::before    { font-family: 'Font Awesome 6 Brands'; content: '\f180'; }
.wp-block-navigation .wp-block-navigation-item a[href*="pinterest.com"]::before     { font-family: 'Font Awesome 6 Brands'; content: '\f0d2'; }
.wp-block-navigation .wp-block-navigation-item a[href*="wordpress.com"]::before     { font-family: 'Font Awesome 6 Brands'; content: '\f19a'; }
.wp-block-navigation .wp-block-navigation-item a[href*="youtube.com"]::before       { font-family: 'Font Awesome 6 Brands'; content: '\f167'; }
.wp-block-navigation .wp-block-navigation-item a[href*="vine.co"]::before           { font-family: 'Font Awesome 6 Brands'; content: '\f1ca'; }
.wp-block-navigation .wp-block-navigation-item a[href*="instagram.com"]::before     { font-family: 'Font Awesome 6 Brands'; content: '\f16d'; }
.wp-block-navigation .wp-block-navigation-item a[href*="stackexchange.com"]::before { font-family: 'Font Awesome 6 Brands'; content: '\f18d'; }
.wp-block-navigation .wp-block-navigation-item a[href*="spotify.com"]::before       { font-family: 'Font Awesome 6 Brands'; content: '\f1bc'; }
.wp-block-navigation .wp-block-navigation-item a[href*="amazon.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f270'; }
.wp-block-navigation .wp-block-navigation-item a[href*="flickr.com"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f16e'; }
.wp-block-navigation .wp-block-navigation-item a[href*="vimeo.com"]::before         { font-family: 'Font Awesome 6 Brands'; content: '\f27d'; }
.wp-block-navigation .wp-block-navigation-item a[href*="yelp.com"]::before          { font-family: 'Font Awesome 6 Brands'; content: '\f1e9'; }
.wp-block-navigation .wp-block-navigation-item a[href*="discord.gg"]::before        { font-family: 'Font Awesome 6 Brands'; content: '\f392'; }
.wp-block-navigation .wp-block-navigation-item a[href*="telegram.org"]::before,
.wp-block-navigation .wp-block-navigation-item a[href*="t.me"]::before              { font-family: 'Font Awesome 6 Brands'; content: '\f2c6'; }
.wp-block-navigation .wp-block-navigation-item a[href*="mailto:"]::before           { font-family: 'Font Awesome 6 Free'; content: '\f0e0'; }
.wp-block-navigation .wp-block-navigation-item a[href$="/feed/"]::before            { font-family: 'Font Awesome 6 Free'; content: '\f09e'; }
.wp-block-navigation .wp-block-navigation-item a[href*="wa.me"]::before,
.wp-block-navigation .wp-block-navigation-item a[href*="whatsapp.com"]::before      { font-family: 'Font Awesome 6 Brands'; content: '\f232'; }
.wp-block-navigation .wp-block-navigation-item a[href*="m.me"]::before,
.wp-block-navigation .wp-block-navigation-item a[href*="messenger.com"]::before     { font-family: 'Font Awesome 6 Brands'; content: '\f39f'; }
.wp-block-navigation .wp-block-navigation-item a[href*="tel:"]::before              { font-family: 'Font Awesome 6 Free'; font-weight: 600; content: '\f095'; }

.wp-block-navigation .wp-block-navigation-item a[href*="bandcamp.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="soundcloud.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="reddit.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="twitch.tv"],
.wp-block-navigation .wp-block-navigation-item a[href*="snapchat.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="medium.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="tumblr.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="apple.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="etsy.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="facebook.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="twitter.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="tiktok.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="google.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="linkedin.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="github.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="dribbble.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="foursquare.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="pinterest.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="wordpress.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="youtube.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="vine.co"],
.wp-block-navigation .wp-block-navigation-item a[href*="instagram.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="stackexchange.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="spotify.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="amazon.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="flickr.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="vimeo.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="yelp.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="discord.gg"],
.wp-block-navigation .wp-block-navigation-item a[href*="telegram.org"],
.wp-block-navigation .wp-block-navigation-item a[href*="t.me"],
.wp-block-navigation .wp-block-navigation-item a[href*="mailto:"],
.wp-block-navigation .wp-block-navigation-item a[href$="/feed/"],
.wp-block-navigation .wp-block-navigation-item a[href*="wa.me"],
.wp-block-navigation .wp-block-navigation-item a[href*="whatsapp.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="m.me"],
.wp-block-navigation .wp-block-navigation-item a[href*="messenger.com"],
.wp-block-navigation .wp-block-navigation-item a[href*="tel:"] {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 4px;
	border-radius: 3px;
	margin-left: calc(calc(var(--wp--style--block-gap) / 2) * -1);
	margin-right: calc(calc(var(--wp--style--block-gap) / 4) * -1);
}

.wp-block-navigation .wp-block-navigation-item a[href*="bandcamp.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="soundcloud.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="reddit.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="twitch.tv"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="snapchat.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="medium.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="tumblr.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="apple.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="etsy.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="facebook.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="twitter.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="x.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="tiktok.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="google.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="linkedin.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="github.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="dribbble.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="foursquare.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="pinterest.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="wordpress.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="youtube.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="vine.co"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="instagram.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="stackexchange.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="spotify.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="amazon.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="flickr.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="vimeo.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="yelp.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="discord.gg"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="telegram.org"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="t.me"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="mailto:"]::after,
.wp-block-navigation .wp-block-navigation-item a[href$="/feed/"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="wa.me"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="whatsapp.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="m.me"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="messenger.com"]::after,
.wp-block-navigation .wp-block-navigation-item a[href*="tel:"]::after {
	display: none;
}

.wp-block-navigation .wp-block-navigation-item a[href*="twitch.tv"] span, .wp-block-navigation .wp-block-navigation-item a[href*="reddit.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="snapchat.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="medium.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="tumblr.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="apple.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="facebook.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="twitter.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="x.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="google.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="linkedin.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="github.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="dribbble.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="foursquare.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="pinterest.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="wordpress.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="youtube.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="vine.co"] span, .wp-block-navigation .wp-block-navigation-item a[href*="instagram.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="stackexchange.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="spotify.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="amazon.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="flickr.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="vimeo.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="yelp.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="mailto:"] span, .wp-block-navigation .wp-block-navigation-item a[href$="/feed/"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="soundcloud.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="bandcamp.com"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="etsy.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="wa.me"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="whatsapp.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="m.me"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="messenger.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="tel:"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="tiktok.com"] span, .wp-block-navigation .wp-block-navigation-item a[href*="discord.gg"] span,
.wp-block-navigation .wp-block-navigation-item a[href*="telegram.org"] span, .wp-block-navigation .wp-block-navigation-item a[href*="t.me"] span {
	display: none;
}

/************************************************
 User Classes
************************************************/

.hide, .hidden {
	display: none;
}
.clip-img-angle-top-right img {
	clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}
.clip-img-angle-bottom-right img {
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}
.clip-img-angle-top-left img {
	clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.clip-img-angle-bottom-left img {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
.margin-zero {
	margin: 0px !important;
}
.padding-zero {
	padding: 0px !important;
}
.rounded-corners-small {
	border-radius: 3px;
	overflow: hidden;
}
.rounded-corners-medium {
	border-radius: 12px;
	overflow: hidden;
}
.rounded-corners-large {
	border-radius: 24px;
	overflow: hidden;
}
.position-absolute {
	position: absolute;
	top: 0;
	left: 0;
}
.position-sticky {
	position: sticky;
	top: 0;
}
.position-fixed {
	position: fixed;
	top: 0;
}
.shadow {
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}
.admin-bar .position-fixed {
	top: 32px;
}
.filters-panel {
	top: 0;
	width: var(--drawer-width);
	max-width: 100% !important;
	height: 100%;
	overflow: auto;
	box-sizing: border-box !important;
	z-index: 99;
}
.admin-bar .filters-panel {
	top: 32px;
}
.filters-panel ul li {
	list-style: none;
}
.filters-panel ul li::marker {
	display: none;
}

/************************************************
 Alignment
************************************************/

.alignwide, .alignfull {
	position: relative;
	margin-left: 0;
	margin-right: 0;
	box-sizing: border-box;
}
.aligncenter, .alignnone {
	margin-left: auto;
	margin-right: auto;
}
.aligncenter {
	text-align: center;
}
.alignright {
	float: right;
}
.alignleft {
	float: left;
}

/* Image Alignement Fix For Content Width */
.entry-content > .alignleft {
	margin-left: calc( ( 100% - var(--wp--style--global--content-size) ) / 2 ) !important;
}
.entry-content > .alignright {
	margin-right: calc( ( 100% - var(--wp--style--global--content-size) ) / 2 ) !important;
}

/************************************************
 Buttons
************************************************/

button, .button, a.button, a.button:link, a.button:visited, input[type=submit],
.wp-block-button__link, .wc-block-components-button:not(.is-link), .wp-block-search__button {
	position: relative;
	top: 0;
	height: auto;
	transition: all .25s ease-in-out;
	box-shadow: none;
	box-sizing: border-box;
}
button:hover, .button:hover, a.button:hover, input[type=submit]:hover,
.wp-block-button__link:hover, .wc-block-components-button:not(.is-link):hover, .wp-block-search__button:hover {
	top: -2px;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.24);
	cursor: pointer;
}
button:active, .button:active, a.button:active, input[type=submit]:active,
.wp-block-button__link:active, .wc-block-components-button:not(.is-link):active, .wp-block-search__button:active {
	top: 0;
	box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.24);
	cursor: pointer;
}

/************************************************
 Tables
************************************************/

table,
.wp-block-table table {
	width: 100%;
	padding: 0;
	border-radius: 3px;
	border-spacing: 0;
}
table p,
table form,
table ul,
table li {
	margin: 6px 0px;
	padding: 0;
}
table thead,
.wp-block-table thead {
	border-color: var(--wp--preset--color--light-gray);
}
table th,
.wp-block-table th {
	font-size: 80%;
	font-weight: normal;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: left;
	margin: 0;
	padding: 12px;
	border-top: 1px solid var(--wp--preset--color--light-gray);
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
	box-sizing: border-box;
}
table td,
.wp-block-table td {
	text-align: left;
	padding: 12px;
	margin: 0;
	border-top: 1px solid var(--wp--preset--color--light-gray);
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
	box-sizing: border-box;
}
table tr td dl {
	margin-top: 6px;
	margin-bottom: 6px;
}
table tr td dl p {
	margin: 0;
}

/************************************************
 Forms
************************************************/

form {
	display: block;
	overflow: hidden;
}
form p {
	margin-top: calc(var(--wp--style--block-gap) / 2);
}
form div {
	display: block;
	box-sizing: border-box;
}
form span.required {
	display: inline;
}
form li,
form ul,
form ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
fieldset {
	margin-top: calc(var(--wp--style--block-gap) / 2);
	margin-bottom: 0;
	padding: 0;
	border: none;
}
fieldset legend {
	font-weight: bold;
	margin-bottom: 6px;
}
fieldset select,
fieldset input:not([type="checkbox"], [type="radio"]) {
    width: 100%;
}
input,
input[type='url'],
input[type='tel'],
input[type='email'],
input[type='text'],
input[type='password'],
textarea, #comment,
#author, #email, #url {
	display: block;
	max-width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.4;
	padding: 12px;
	border-radius: 3px;
	border-style: solid;
	border-width: 2px;
	border-color: var(--wp--preset--color--light-gray);
}
input[type='checkbox'],
input[type='radio'] {
	display: inline-block;
	margin-top: 0;
	margin-left: 0;
	margin-right: 6px;
	padding: 0;
	vertical-align: baseline !important;
}
input[type='submit'],
input[type='submit']:hover {
	margin-top: 0;
}
textarea, #comment {
	width: 100%;
	overflow: auto;
}
address {
	margin: 12px 0;
}
select {
	display: block;
	text-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
	width: auto;
	max-width: 100%;
	font-size: 1.1rem;
	line-height: 1.6;
	padding: 8px 46px 8px 12px;
	box-shadow: none;
	border-radius: 3px;
	border-width: 2px;
	border-color: var(--wp--preset--color--light-gray);
	transition: all .25s ease-in-out;
	appearance: none;

	background-image:
		linear-gradient(45deg, transparent 50%, gray 50%),
		linear-gradient(135deg, gray 50%, transparent 50%),
		linear-gradient(to right, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
	background-position:
		calc(100% - 16px) 50%,
		calc(100% - 11px) 50%,
		calc(100% - 32px) 6px;
	background-size:
		5px 5px,
		5px 5px,
		1px 70%;
	background-repeat: no-repeat;

	/* reset */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input:focus, select:focus, textarea:focus,
#comment:focus, #author:focus, #email:focus, #url:focus {
	outline: 0;
	border-color: var(--wp--preset--color--accent-primary);
}

/************************************************
Search Form
************************************************/

form[role="search"] {
	width: 100%;
}
form[role="search"] > div {
	display: flex;
}
form[role="search"] input[type="search"] {
	padding: 12px;
}
form[role="search"] button[type="submit"],
form[role="search"] button[type="submit"]:hover {
	padding: 12px;
	border: none;
}

/************************************************
 Sidebars
************************************************/

aside ul {
	padding: 0;
	margin: 0;
}
aside ul li {
	list-style: none;
	font-size: 0.85rem;
	margin: 0;
}
aside table td,
aside table th {
	padding-left: 8px;
	padding-right: 8px;
}

/************************************************
 Comments
************************************************/

.wp-block-comment-template li,
.wp-block-post-comments .commentlist li.comment {
	list-style: none;
	margin: 0;
	padding: 0;
}
.wp-block-comment-template .wp-block-comment-author-name,
.wp-block-post-comments .commentlist li .fn {
	text-transform: capitalize;
}
.wp-block-comment-template .avatar,
.wp-block-post-comments .commentlist li .avatar {
	float: left;
	background: #ffffff;
	padding: 4px;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
	border-radius: 2px;
}
.wp-block-post-comments .commentlist li .comment-meta {
	margin-left: 0;
}
.wp-block-comment-template .wp-block-comment-date,
.wp-block-post-comments .commentlist li .comment-metadata {
	font-size: 0.85rem;
	margin-top: 0;
}
.wp-block-post-comments .commentlist li .comment-metadata .edit-link {
	margin-left: 6px;
	padding-left: 8px;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.wp-block-comment-template .wp-block-comment-content,
.wp-block-post-comments .commentlist li .comment-content {
	margin-top: 18px;
}
.wp-block-comment-template .wp-block-comment-reply-link,
.wp-block-comment-template .wp-block-comment-edit-link,
.wp-block-post-comments .commentlist li .reply {
	font-size: 0.85rem;
}
.wp-block-comment-template .wp-block-comment-reply-link,
.wp-block-comment-template .wp-block-comment-edit-link {
	margin-top: 12px;
	margin-bottom: 12px;
}

/************************************************
 Pagination
************************************************/

.wp-block-query-pagination {
	width: 100%;
	font-weight: bold;
	text-align: center;
	line-height: 36px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	padding: 2px;
	position: relative;
	border: 1px solid var(--wp--preset--color--light-gray);
	border-radius: 2px;
	overflow: hidden;
	z-index: 7;
}
.wp-block-query-pagination.is-layout-flex {
	gap: 0;
}
.wp-block-query-pagination .page-numbers,
.wp-block-query-pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .wp-block-query-pagination-previous {
	float: left;
	background: #ffffff;
	color: var(--wp--preset--color--medium-gray);
	min-height: 36px;
	min-width: 36px;
	line-height: 36px;
	text-decoration: none;
	margin: 0;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}
.wp-block-query-pagination .page-numbers,
.wp-block-query-pagination .wp-block-query-pagination-next {
	border-left: 1px solid var(--wp--preset--color--light-gray);
	border-right: none;
	border-top: none;
	border-bottom: none;
}
.wp-block-query-pagination .page-numbers:first-child {
	border-left: none;
}
.wp-block-query-pagination .wp-block-query-pagination-previous {
	border-right: 1px solid var(--wp--preset--color--light-gray);
	border-left: none;
	border-top: none;
	border-bottom: none;
}
.wp-block-query-pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .wp-block-query-pagination-previous {
	font-size: 80%;
	padding-left: 12px;
	padding-right: 12px;
}
.wp-block-query-pagination .page-numbers:hover,
.wp-block-query-pagination .page-numbers:active,
.wp-block-query-pagination .page-numbers.current,
.wp-block-query-pagination .wp-block-query-pagination-next:hover,
.wp-block-query-pagination .wp-block-query-pagination-previous:hover {
	background: var(--wp--preset--color--bg-light);
	color: var(--wp--preset--color--black);
	min-height: 36px;
	min-width: 36px;
	line-height: 36px;
	box-shadow: none;
}
.wp-block-query-pagination > .wp-block-query-pagination-next,
.wp-block-query-pagination > .wp-block-query-pagination-numbers,
.wp-block-query-pagination > .wp-block-query-pagination-previous {
	margin-bottom: 0;
	margin-right: 0;
}

/************************************************
 Footer
************************************************/

.footer-links {
	margin-top: 0;
}
.footer-widgets ul {
	padding: 0;
}
.footer-widgets ul li {
	list-style: none;
	margin: 8px 0px;
	padding: 0;
}
.footer-widgets .wp-block-column {
	padding-bottom: 24px;
}

/************************************************
 Screen Reader
************************************************/

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/************************************************
 Block: Site Title
************************************************/

.wp-block-site-title a {
	text-decoration: none;
}

/************************************************
 Block: Spacer
************************************************/

.wp-block-spacer + * {
	margin-top: 0;
}

/************************************************
 Block: Heading
************************************************/

.wp-block-heading + p,
.wp-block-heading + ul,
.wp-block-heading + ol,
.wp-block-heading + .wp-block-heading {
	margin-top: calc(var(--wp--style--block-gap) / 2);
}

/************************************************
 Block: Image
************************************************/

.wp-block-image {
	margin-top: var(--wp--style--block-gap);
}
.wp-block-image.aligncenter {
	display: table;
}
.wp-block-image.alignfull {
	width: 100%;
}
.wp-block-image figcaption {
	margin-top: 8px;
}

/************************************************
 Block: Embed
************************************************/

.wp-block-embed {
	margin-left: auto;
	margin-right: auto;
}

/************************************************
 Block: Gallery
************************************************/

.wp-block-gallery .blocks-gallery-item {
	padding: 0;
}
.wp-block-gallery .blocks-gallery-image {
	margin-left: 0;
	margin-right: 0;
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
	box-sizing: border-box;
	border: none;
}

/************************************************
 Block: Cover
************************************************/

.wp-block-cover .wp-block-cover__inner-container > :first-child {
	margin-top: 0;
}
.wp-block-cover .wp-block-cover__inner-container > :last-child {
	margin-bottom: 0;
}

/************************************************
 Block: Search
************************************************/

.wp-block-search label {
	display: none;
}
.wp-block-search .wp-block-search__input[type="search"] {
	background: var(--wp--preset--color--bg-light);
	width: 100%;
	margin: 0px;
	padding: 12px;
	border: 2px solid rgba(0, 0, 0, 0);
	border-radius: 3px 0px 0px 3px;
}
.wp-block-search .wp-block-search__input[type="search"]:focus {
	border-color: var(--wp--preset--color--accent-primary);
}
.wp-block-search .wp-block-search__button[type="submit"],
.wp-block-search .wp-block-search__button[type="submit"]:hover {
	top: 0;
	font-size: 0.9rem;
	line-height: 1.2;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: -2px;
	padding: 12px 24px;
	border-radius: 0px 3px 3px 0px;
	box-shadow: none;
}

/************************************************
 Block: Media
************************************************/

.wp-block-media-text {
	display: grid;
	overflow: hidden;
}

/************************************************
 Block: Query
************************************************/

.wp-block-query li {
	position: relative;
	list-style: none;
	padding: 0;
	box-sizing: border-box;
}
.wp-block-query .wp-block-post-featured-image {
	box-sizing: border-box;
	border-radius: 3px;
}

/************************************************
 Block: Post Title
************************************************/

.wp-block-post-title a {
	text-decoration: none;
	transition: all .25s ease-in-out;
}
.wp-block-post-title + .entry-content,
.wp-block-post-title + .wp-block-post-excerpt {
	margin-top: calc(var(--wp--style--block-gap) / 2);
}

/************************************************
 Block: Query Elements
************************************************/

.wp-block-post-featured-image {
	line-height: 0;
	overflow: hidden;
}
.wp-block-post-featured-image a {
	display: block;
	text-align: center;
}
.wp-block-post-featured-image a img {
	transition: all 1s ease-in-out;
}
.wp-block-post-featured-image:hover a img {
	transform: scale(1.04);
}
.wp-block-post-author {
	display: flex;
	align-items: center;
}
.wp-block-post-author__avatar {
	line-height: 0;
	margin-right: 8px;
	padding: 2px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	overflow: hidden;
}
.wp-block-post-author__name {
	text-transform: capitalize;
}
.wp-block-post-terms a {
	text-decoration: none;
}
.wp-block-post-terms a:hover {
	text-decoration: underline;
}

/************************************************
 Block: Group
************************************************/

.wp-block-group > :first-child {
	margin-top: 0;
}
.wp-block-group > :last-child {
	margin-bottom: 0;
}
.wp-block-group__inner-container {
	margin-left: auto;
	margin-right: auto;
}

/************************************************
 Block: Button
************************************************/

.wp-block-button {
	position: relative;
	box-sizing: border-box;
}
.wp-block-button.alignleft {
	float: none;
	text-align: left;
}
.wp-block-button.alignright {
	float: none;
	text-align: right;
}
.wp-block-button .wp-block-button__link {
	text-decoration: none;
}
.wp-block-button.alignwide .wp-block-button__link {
	display: block;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):hover {
	color: inherit;
	background: inherit;
}
.has-background-dim .wp-block-button.is-style-outline .wp-block-button__link {
	color: #ffffff;
	border-color: #ffffff;
}

/************************************************
 Block: File
************************************************/

.wp-block-file {
	display: flex;
	justify-content: space-between;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.wp-block-file__content-wrapper {
	display: flex;
	justify-content: space-between;
}
.wp-block-file .wp-block-file__button {
	border-radius: 3px;
}

/************************************************
 Block: Video
************************************************/

.videopress-block-hide {
	display: none;
}

/************************************************
 Block: Quotes
************************************************/

.wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
	display: block;
	font-size: var(--wp--preset--font-size--small);
	font-style: normal;
	margin-top: 12px;
	opacity: 0.6;
}
.wp-block-pullquote {
	position: relative;
	border-top-width: 2px;
	border-top-style: solid;
	border-bottom-width: 2px;
	border-bottom-style: solid;
}
.wp-block-pullquote p {
	font-size: inherit;
}
.wp-block-pullquote::before {
	position: absolute;
	top: -28px; left: 50%;
	background: #ffffff;
	color: rgba(0, 0, 0, 0.4);
	content: '\f10d';
	font-family: 'Font Awesome 6 Free';
	font-weight: 600;
	font-size: 18px;
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	margin-left: -24px;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: inherit;
}
.wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: none;
}
.wp-block-pullquote blockquote cite,
.wp-block-pullquote blockquote .wp-block-pullquote__citation {
	font-size: initial;
	font-weight: 400;
	text-transform: none;
	opacity: 0.6;
}

/************************************************
 Block: Columns
************************************************/

.wp-block-columns {
	display: flex;
	box-sizing: border-box;
}
.wp-block-column {
	max-width: 100%;
	border-radius: inherit;
}
.wp-block-column > :first-child {
	margin-top: 0;
}
.wp-block-column > :last-child {
	margin-bottom: 0;
}

/************************************************
 Block: Table
************************************************/

.wp-block-table {
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}
.wp-block-table.is-style-stripes {
	border-bottom: none;
}
.wp-block-table figcaption {
	margin-top: 12px;
}

/************************************************
 Block: Audio
************************************************/

.wp-block-audio {
	margin-left: 0;
	margin-right: 0;
}
.wp-block-audio audio {
	width: 100%;
}

/************************************************
 Block: Separator
************************************************/

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
	max-width: 160px;
}

/************************************************
 Block: Social
************************************************/

.wp-block-social-links .wp-social-link {
	padding: 0;
}
.wp-block-social-links .wp-social-link a {
	color: inherit;
}

/************************************************
 Block: OBB Hero
************************************************/

div[data-type="obb/hero-block"] {
	margin-top: 0;
}

/************************************************
 Block: OBB Featured Content
************************************************/

.obb-featured {
	transition: transform 0.2s ease;
}
.obb-featured:hover {
	transform: scale(1.02);
}

/************************************************
 Block: OBB Icon Box
************************************************/

.obb-icon-box {
	transition: transform 0.2s ease;
}
.obb-icon-box:hover {
	transform: scale(1.02);
}

/************************************************
 Mobile Styles
************************************************/

@media screen and (max-width: 1366px) {
	.site-main > *:not(.alignfull, .entry-content),
	.site-main > .entry-content > *:not(.alignfull) {
		padding-left: var(--wp--style--block-gap);
		padding-right: var(--wp--style--block-gap);
		box-sizing: border-box;
	}
	.site-main > .entry-content > .wp-block-media-text:not(.alignfull) {
		padding-left: 0;
		padding-right: 0;
	}
	/* Fix For Legacy WooCommerce Block */
	.site-main .site-main > *:not(.entry-content):not(.alignfull),
	.site-main .site-main > .entry-content > *:not(.alignfull) {
		padding-left: 0;
		padding-right: 0;
	}
	.sidebar-left > .wp-block-columns,
	.sidebar-right > .wp-block-columns {
		display: grid;
	}
	.sidebar-left > .wp-block-columns > .wp-block-column:first-child,
	.sidebar-right > .wp-block-columns > .wp-block-column:last-child {
		order: 1;
	}
}

/* Column Break Point */

@media screen and (max-width: 781px) {
	.sidebar-left > .wp-block-columns > .wp-block-column,
	.sidebar-right > .wp-block-columns > .wp-block-column {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.sidebar-left .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column,
	.sidebar-right .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
		flex-basis: 100% !important;
	}
}

/* Phone Size */

@media screen and (max-width: 768px) {
	.position-sticky {
		position: relative;
		top: 0 !important;
	}
	.header-wrapper.position-fixed {
		position: absolute;
	}
	.admin-bar .header-wrapper.position-fixed {
		top: 0;
	}
	.site-nav-wrapper {
		flex-direction: row-reverse;
	}
	.site-main > .entry-content > *.alignfull {
		margin-left: 0;
		margin-right: 0;
	}
	/* .site-main > .entry-content > *.alignfull {
		padding-left: 0;
		padding-right: 0;
	} */
	.site-main > *:not(.alignfull, .entry-content),
	.site-main > .entry-content > *:not(.alignfull),
	.site-main > .entry-content > .wp-block-group.alignfull:not(.has-background) > * {
		padding-left: calc(var(--wp--style--block-gap) / 1.5);
		padding-right: calc(var(--wp--style--block-gap) / 1.5);
		box-sizing: border-box;
	}
	.site-footer .wp-block-column .wp-block-navigation__container,
	.site-footer .wp-block-column > .wp-block-group {
		justify-content: center;
	}
	.entry-content > .wp-block-cover p br,
	.entry-content > .wp-block-cover .wp-block-heading br {
		display: none;
	}
	.woocommerce .wp-block-woocommerce-product-image-gallery {
		width: 100vw;
		margin-left: calc(calc(var(--wp--style--block-gap) / 1.5) * -1);
	}
	.woocommerce .wc-block-store-notices + .wp-block-columns {
		margin-top: 0;
	}
	.reverse-mobile,
	.is-stacked-on-mobile.reverse-mobile {
		display: flex;
		flex-direction: column-reverse;
	}
	/* Image Alignement Fix For Content Width */
	.entry-content > .alignleft {
		margin-left: auto !important;
	}
	.entry-content > .alignright {
		margin-right: auto !important;
	}
}
/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-regular,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-brands:before,.fa-regular:before,.fa-solid:before,.fa:before,.fab:before,.far:before,.fas:before{content:var(--fa)}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{animation-name:fa-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{animation-name:fa-beat-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{animation-name:fa-shake;animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{animation-name:fa-spin;animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}

.fa-0{--fa:"\30"}.fa-1{--fa:"\31"}.fa-2{--fa:"\32"}.fa-3{--fa:"\33"}.fa-4{--fa:"\34"}.fa-5{--fa:"\35"}.fa-6{--fa:"\36"}.fa-7{--fa:"\37"}.fa-8{--fa:"\38"}.fa-9{--fa:"\39"}.fa-fill-drip{--fa:"\f576"}.fa-arrows-to-circle{--fa:"\e4bd"}.fa-chevron-circle-right,.fa-circle-chevron-right{--fa:"\f138"}.fa-at{--fa:"\40"}.fa-trash-alt,.fa-trash-can{--fa:"\f2ed"}.fa-text-height{--fa:"\f034"}.fa-user-times,.fa-user-xmark{--fa:"\f235"}.fa-stethoscope{--fa:"\f0f1"}.fa-comment-alt,.fa-message{--fa:"\f27a"}.fa-info{--fa:"\f129"}.fa-compress-alt,.fa-down-left-and-up-right-to-center{--fa:"\f422"}.fa-explosion{--fa:"\e4e9"}.fa-file-alt,.fa-file-lines,.fa-file-text{--fa:"\f15c"}.fa-wave-square{--fa:"\f83e"}.fa-ring{--fa:"\f70b"}.fa-building-un{--fa:"\e4d9"}.fa-dice-three{--fa:"\f527"}.fa-calendar-alt,.fa-calendar-days{--fa:"\f073"}.fa-anchor-circle-check{--fa:"\e4aa"}.fa-building-circle-arrow-right{--fa:"\e4d1"}.fa-volleyball,.fa-volleyball-ball{--fa:"\f45f"}.fa-arrows-up-to-line{--fa:"\e4c2"}.fa-sort-desc,.fa-sort-down{--fa:"\f0dd"}.fa-circle-minus,.fa-minus-circle{--fa:"\f056"}.fa-door-open{--fa:"\f52b"}.fa-right-from-bracket,.fa-sign-out-alt{--fa:"\f2f5"}.fa-atom{--fa:"\f5d2"}.fa-soap{--fa:"\e06e"}.fa-heart-music-camera-bolt,.fa-icons{--fa:"\f86d"}.fa-microphone-alt-slash,.fa-microphone-lines-slash{--fa:"\f539"}.fa-bridge-circle-check{--fa:"\e4c9"}.fa-pump-medical{--fa:"\e06a"}.fa-fingerprint{--fa:"\f577"}.fa-hand-point-right{--fa:"\f0a4"}.fa-magnifying-glass-location,.fa-search-location{--fa:"\f689"}.fa-forward-step,.fa-step-forward{--fa:"\f051"}.fa-face-smile-beam,.fa-smile-beam{--fa:"\f5b8"}.fa-flag-checkered{--fa:"\f11e"}.fa-football,.fa-football-ball{--fa:"\f44e"}.fa-school-circle-exclamation{--fa:"\e56c"}.fa-crop{--fa:"\f125"}.fa-angle-double-down,.fa-angles-down{--fa:"\f103"}.fa-users-rectangle{--fa:"\e594"}.fa-people-roof{--fa:"\e537"}.fa-people-line{--fa:"\e534"}.fa-beer,.fa-beer-mug-empty{--fa:"\f0fc"}.fa-diagram-predecessor{--fa:"\e477"}.fa-arrow-up-long,.fa-long-arrow-up{--fa:"\f176"}.fa-burn,.fa-fire-flame-simple{--fa:"\f46a"}.fa-male,.fa-person{--fa:"\f183"}.fa-laptop{--fa:"\f109"}.fa-file-csv{--fa:"\f6dd"}.fa-menorah{--fa:"\f676"}.fa-truck-plane{--fa:"\e58f"}.fa-record-vinyl{--fa:"\f8d9"}.fa-face-grin-stars,.fa-grin-stars{--fa:"\f587"}.fa-bong{--fa:"\f55c"}.fa-pastafarianism,.fa-spaghetti-monster-flying{--fa:"\f67b"}.fa-arrow-down-up-across-line{--fa:"\e4af"}.fa-spoon,.fa-utensil-spoon{--fa:"\f2e5"}.fa-jar-wheat{--fa:"\e517"}.fa-envelopes-bulk,.fa-mail-bulk{--fa:"\f674"}.fa-file-circle-exclamation{--fa:"\e4eb"}.fa-circle-h,.fa-hospital-symbol{--fa:"\f47e"}.fa-pager{--fa:"\f815"}.fa-address-book,.fa-contact-book{--fa:"\f2b9"}.fa-strikethrough{--fa:"\f0cc"}.fa-k{--fa:"\4b"}.fa-landmark-flag{--fa:"\e51c"}.fa-pencil,.fa-pencil-alt{--fa:"\f303"}.fa-backward{--fa:"\f04a"}.fa-caret-right{--fa:"\f0da"}.fa-comments{--fa:"\f086"}.fa-file-clipboard,.fa-paste{--fa:"\f0ea"}.fa-code-pull-request{--fa:"\e13c"}.fa-clipboard-list{--fa:"\f46d"}.fa-truck-loading,.fa-truck-ramp-box{--fa:"\f4de"}.fa-user-check{--fa:"\f4fc"}.fa-vial-virus{--fa:"\e597"}.fa-sheet-plastic{--fa:"\e571"}.fa-blog{--fa:"\f781"}.fa-user-ninja{--fa:"\f504"}.fa-person-arrow-up-from-line{--fa:"\e539"}.fa-scroll-torah,.fa-torah{--fa:"\f6a0"}.fa-broom-ball,.fa-quidditch,.fa-quidditch-broom-ball{--fa:"\f458"}.fa-toggle-off{--fa:"\f204"}.fa-archive,.fa-box-archive{--fa:"\f187"}.fa-person-drowning{--fa:"\e545"}.fa-arrow-down-9-1,.fa-sort-numeric-desc,.fa-sort-numeric-down-alt{--fa:"\f886"}.fa-face-grin-tongue-squint,.fa-grin-tongue-squint{--fa:"\f58a"}.fa-spray-can{--fa:"\f5bd"}.fa-truck-monster{--fa:"\f63b"}.fa-w{--fa:"\57"}.fa-earth-africa,.fa-globe-africa{--fa:"\f57c"}.fa-rainbow{--fa:"\f75b"}.fa-circle-notch{--fa:"\f1ce"}.fa-tablet-alt,.fa-tablet-screen-button{--fa:"\f3fa"}.fa-paw{--fa:"\f1b0"}.fa-cloud{--fa:"\f0c2"}.fa-trowel-bricks{--fa:"\e58a"}.fa-face-flushed,.fa-flushed{--fa:"\f579"}.fa-hospital-user{--fa:"\f80d"}.fa-tent-arrow-left-right{--fa:"\e57f"}.fa-gavel,.fa-legal{--fa:"\f0e3"}.fa-binoculars{--fa:"\f1e5"}.fa-microphone-slash{--fa:"\f131"}.fa-box-tissue{--fa:"\e05b"}.fa-motorcycle{--fa:"\f21c"}.fa-bell-concierge,.fa-concierge-bell{--fa:"\f562"}.fa-pen-ruler,.fa-pencil-ruler{--fa:"\f5ae"}.fa-people-arrows,.fa-people-arrows-left-right{--fa:"\e068"}.fa-mars-and-venus-burst{--fa:"\e523"}.fa-caret-square-right,.fa-square-caret-right{--fa:"\f152"}.fa-cut,.fa-scissors{--fa:"\f0c4"}.fa-sun-plant-wilt{--fa:"\e57a"}.fa-toilets-portable{--fa:"\e584"}.fa-hockey-puck{--fa:"\f453"}.fa-table{--fa:"\f0ce"}.fa-magnifying-glass-arrow-right{--fa:"\e521"}.fa-digital-tachograph,.fa-tachograph-digital{--fa:"\f566"}.fa-users-slash{--fa:"\e073"}.fa-clover{--fa:"\e139"}.fa-mail-reply,.fa-reply{--fa:"\f3e5"}.fa-star-and-crescent{--fa:"\f699"}.fa-house-fire{--fa:"\e50c"}.fa-minus-square,.fa-square-minus{--fa:"\f146"}.fa-helicopter{--fa:"\f533"}.fa-compass{--fa:"\f14e"}.fa-caret-square-down,.fa-square-caret-down{--fa:"\f150"}.fa-file-circle-question{--fa:"\e4ef"}.fa-laptop-code{--fa:"\f5fc"}.fa-swatchbook{--fa:"\f5c3"}.fa-prescription-bottle{--fa:"\f485"}.fa-bars,.fa-navicon{--fa:"\f0c9"}.fa-people-group{--fa:"\e533"}.fa-hourglass-3,.fa-hourglass-end{--fa:"\f253"}.fa-heart-broken,.fa-heart-crack{--fa:"\f7a9"}.fa-external-link-square-alt,.fa-square-up-right{--fa:"\f360"}.fa-face-kiss-beam,.fa-kiss-beam{--fa:"\f597"}.fa-film{--fa:"\f008"}.fa-ruler-horizontal{--fa:"\f547"}.fa-people-robbery{--fa:"\e536"}.fa-lightbulb{--fa:"\f0eb"}.fa-caret-left{--fa:"\f0d9"}.fa-circle-exclamation,.fa-exclamation-circle{--fa:"\f06a"}.fa-school-circle-xmark{--fa:"\e56d"}.fa-arrow-right-from-bracket,.fa-sign-out{--fa:"\f08b"}.fa-chevron-circle-down,.fa-circle-chevron-down{--fa:"\f13a"}.fa-unlock-alt,.fa-unlock-keyhole{--fa:"\f13e"}.fa-cloud-showers-heavy{--fa:"\f740"}.fa-headphones-alt,.fa-headphones-simple{--fa:"\f58f"}.fa-sitemap{--fa:"\f0e8"}.fa-circle-dollar-to-slot,.fa-donate{--fa:"\f4b9"}.fa-memory{--fa:"\f538"}.fa-road-spikes{--fa:"\e568"}.fa-fire-burner{--fa:"\e4f1"}.fa-flag{--fa:"\f024"}.fa-hanukiah{--fa:"\f6e6"}.fa-feather{--fa:"\f52d"}.fa-volume-down,.fa-volume-low{--fa:"\f027"}.fa-comment-slash{--fa:"\f4b3"}.fa-cloud-sun-rain{--fa:"\f743"}.fa-compress{--fa:"\f066"}.fa-wheat-alt,.fa-wheat-awn{--fa:"\e2cd"}.fa-ankh{--fa:"\f644"}.fa-hands-holding-child{--fa:"\e4fa"}.fa-asterisk{--fa:"\2a"}.fa-check-square,.fa-square-check{--fa:"\f14a"}.fa-peseta-sign{--fa:"\e221"}.fa-header,.fa-heading{--fa:"\f1dc"}.fa-ghost{--fa:"\f6e2"}.fa-list,.fa-list-squares{--fa:"\f03a"}.fa-phone-square-alt,.fa-square-phone-flip{--fa:"\f87b"}.fa-cart-plus{--fa:"\f217"}.fa-gamepad{--fa:"\f11b"}.fa-circle-dot,.fa-dot-circle{--fa:"\f192"}.fa-dizzy,.fa-face-dizzy{--fa:"\f567"}.fa-egg{--fa:"\f7fb"}.fa-house-medical-circle-xmark{--fa:"\e513"}.fa-campground{--fa:"\f6bb"}.fa-folder-plus{--fa:"\f65e"}.fa-futbol,.fa-futbol-ball,.fa-soccer-ball{--fa:"\f1e3"}.fa-paint-brush,.fa-paintbrush{--fa:"\f1fc"}.fa-lock{--fa:"\f023"}.fa-gas-pump{--fa:"\f52f"}.fa-hot-tub,.fa-hot-tub-person{--fa:"\f593"}.fa-map-location,.fa-map-marked{--fa:"\f59f"}.fa-house-flood-water{--fa:"\e50e"}.fa-tree{--fa:"\f1bb"}.fa-bridge-lock{--fa:"\e4cc"}.fa-sack-dollar{--fa:"\f81d"}.fa-edit,.fa-pen-to-square{--fa:"\f044"}.fa-car-side{--fa:"\f5e4"}.fa-share-alt,.fa-share-nodes{--fa:"\f1e0"}.fa-heart-circle-minus{--fa:"\e4ff"}.fa-hourglass-2,.fa-hourglass-half{--fa:"\f252"}.fa-microscope{--fa:"\f610"}.fa-sink{--fa:"\e06d"}.fa-bag-shopping,.fa-shopping-bag{--fa:"\f290"}.fa-arrow-down-z-a,.fa-sort-alpha-desc,.fa-sort-alpha-down-alt{--fa:"\f881"}.fa-mitten{--fa:"\f7b5"}.fa-person-rays{--fa:"\e54d"}.fa-users{--fa:"\f0c0"}.fa-eye-slash{--fa:"\f070"}.fa-flask-vial{--fa:"\e4f3"}.fa-hand,.fa-hand-paper{--fa:"\f256"}.fa-om{--fa:"\f679"}.fa-worm{--fa:"\e599"}.fa-house-circle-xmark{--fa:"\e50b"}.fa-plug{--fa:"\f1e6"}.fa-chevron-up{--fa:"\f077"}.fa-hand-spock{--fa:"\f259"}.fa-stopwatch{--fa:"\f2f2"}.fa-face-kiss,.fa-kiss{--fa:"\f596"}.fa-bridge-circle-xmark{--fa:"\e4cb"}.fa-face-grin-tongue,.fa-grin-tongue{--fa:"\f589"}.fa-chess-bishop{--fa:"\f43a"}.fa-face-grin-wink,.fa-grin-wink{--fa:"\f58c"}.fa-deaf,.fa-deafness,.fa-ear-deaf,.fa-hard-of-hearing{--fa:"\f2a4"}.fa-road-circle-check{--fa:"\e564"}.fa-dice-five{--fa:"\f523"}.fa-rss-square,.fa-square-rss{--fa:"\f143"}.fa-land-mine-on{--fa:"\e51b"}.fa-i-cursor{--fa:"\f246"}.fa-stamp{--fa:"\f5bf"}.fa-stairs{--fa:"\e289"}.fa-i{--fa:"\49"}.fa-hryvnia,.fa-hryvnia-sign{--fa:"\f6f2"}.fa-pills{--fa:"\f484"}.fa-face-grin-wide,.fa-grin-alt{--fa:"\f581"}.fa-tooth{--fa:"\f5c9"}.fa-v{--fa:"\56"}.fa-bangladeshi-taka-sign{--fa:"\e2e6"}.fa-bicycle{--fa:"\f206"}.fa-rod-asclepius,.fa-rod-snake,.fa-staff-aesculapius,.fa-staff-snake{--fa:"\e579"}.fa-head-side-cough-slash{--fa:"\e062"}.fa-ambulance,.fa-truck-medical{--fa:"\f0f9"}.fa-wheat-awn-circle-exclamation{--fa:"\e598"}.fa-snowman{--fa:"\f7d0"}.fa-mortar-pestle{--fa:"\f5a7"}.fa-road-barrier{--fa:"\e562"}.fa-school{--fa:"\f549"}.fa-igloo{--fa:"\f7ae"}.fa-joint{--fa:"\f595"}.fa-angle-right{--fa:"\f105"}.fa-horse{--fa:"\f6f0"}.fa-q{--fa:"\51"}.fa-g{--fa:"\47"}.fa-notes-medical{--fa:"\f481"}.fa-temperature-2,.fa-temperature-half,.fa-thermometer-2,.fa-thermometer-half{--fa:"\f2c9"}.fa-dong-sign{--fa:"\e169"}.fa-capsules{--fa:"\f46b"}.fa-poo-bolt,.fa-poo-storm{--fa:"\f75a"}.fa-face-frown-open,.fa-frown-open{--fa:"\f57a"}.fa-hand-point-up{--fa:"\f0a6"}.fa-money-bill{--fa:"\f0d6"}.fa-bookmark{--fa:"\f02e"}.fa-align-justify{--fa:"\f039"}.fa-umbrella-beach{--fa:"\f5ca"}.fa-helmet-un{--fa:"\e503"}.fa-bullseye{--fa:"\f140"}.fa-bacon{--fa:"\f7e5"}.fa-hand-point-down{--fa:"\f0a7"}.fa-arrow-up-from-bracket{--fa:"\e09a"}.fa-folder,.fa-folder-blank{--fa:"\f07b"}.fa-file-medical-alt,.fa-file-waveform{--fa:"\f478"}.fa-radiation{--fa:"\f7b9"}.fa-chart-simple{--fa:"\e473"}.fa-mars-stroke{--fa:"\f229"}.fa-vial{--fa:"\f492"}.fa-dashboard,.fa-gauge,.fa-gauge-med,.fa-tachometer-alt-average{--fa:"\f624"}.fa-magic-wand-sparkles,.fa-wand-magic-sparkles{--fa:"\e2ca"}.fa-e{--fa:"\45"}.fa-pen-alt,.fa-pen-clip{--fa:"\f305"}.fa-bridge-circle-exclamation{--fa:"\e4ca"}.fa-user{--fa:"\f007"}.fa-school-circle-check{--fa:"\e56b"}.fa-dumpster{--fa:"\f793"}.fa-shuttle-van,.fa-van-shuttle{--fa:"\f5b6"}.fa-building-user{--fa:"\e4da"}.fa-caret-square-left,.fa-square-caret-left{--fa:"\f191"}.fa-highlighter{--fa:"\f591"}.fa-key{--fa:"\f084"}.fa-bullhorn{--fa:"\f0a1"}.fa-globe{--fa:"\f0ac"}.fa-synagogue{--fa:"\f69b"}.fa-person-half-dress{--fa:"\e548"}.fa-road-bridge{--fa:"\e563"}.fa-location-arrow{--fa:"\f124"}.fa-c{--fa:"\43"}.fa-tablet-button{--fa:"\f10a"}.fa-building-lock{--fa:"\e4d6"}.fa-pizza-slice{--fa:"\f818"}.fa-money-bill-wave{--fa:"\f53a"}.fa-area-chart,.fa-chart-area{--fa:"\f1fe"}.fa-house-flag{--fa:"\e50d"}.fa-person-circle-minus{--fa:"\e540"}.fa-ban,.fa-cancel{--fa:"\f05e"}.fa-camera-rotate{--fa:"\e0d8"}.fa-air-freshener,.fa-spray-can-sparkles{--fa:"\f5d0"}.fa-star{--fa:"\f005"}.fa-repeat{--fa:"\f363"}.fa-cross{--fa:"\f654"}.fa-box{--fa:"\f466"}.fa-venus-mars{--fa:"\f228"}.fa-arrow-pointer,.fa-mouse-pointer{--fa:"\f245"}.fa-expand-arrows-alt,.fa-maximize{--fa:"\f31e"}.fa-charging-station{--fa:"\f5e7"}.fa-shapes,.fa-triangle-circle-square{--fa:"\f61f"}.fa-random,.fa-shuffle{--fa:"\f074"}.fa-person-running,.fa-running{--fa:"\f70c"}.fa-mobile-retro{--fa:"\e527"}.fa-grip-lines-vertical{--fa:"\f7a5"}.fa-spider{--fa:"\f717"}.fa-hands-bound{--fa:"\e4f9"}.fa-file-invoice-dollar{--fa:"\f571"}.fa-plane-circle-exclamation{--fa:"\e556"}.fa-x-ray{--fa:"\f497"}.fa-spell-check{--fa:"\f891"}.fa-slash{--fa:"\f715"}.fa-computer-mouse,.fa-mouse{--fa:"\f8cc"}.fa-arrow-right-to-bracket,.fa-sign-in{--fa:"\f090"}.fa-shop-slash,.fa-store-alt-slash{--fa:"\e070"}.fa-server{--fa:"\f233"}.fa-virus-covid-slash{--fa:"\e4a9"}.fa-shop-lock{--fa:"\e4a5"}.fa-hourglass-1,.fa-hourglass-start{--fa:"\f251"}.fa-blender-phone{--fa:"\f6b6"}.fa-building-wheat{--fa:"\e4db"}.fa-person-breastfeeding{--fa:"\e53a"}.fa-right-to-bracket,.fa-sign-in-alt{--fa:"\f2f6"}.fa-venus{--fa:"\f221"}.fa-passport{--fa:"\f5ab"}.fa-thumb-tack-slash,.fa-thumbtack-slash{--fa:"\e68f"}.fa-heart-pulse,.fa-heartbeat{--fa:"\f21e"}.fa-people-carry,.fa-people-carry-box{--fa:"\f4ce"}.fa-temperature-high{--fa:"\f769"}.fa-microchip{--fa:"\f2db"}.fa-crown{--fa:"\f521"}.fa-weight-hanging{--fa:"\f5cd"}.fa-xmarks-lines{--fa:"\e59a"}.fa-file-prescription{--fa:"\f572"}.fa-weight,.fa-weight-scale{--fa:"\f496"}.fa-user-friends,.fa-user-group{--fa:"\f500"}.fa-arrow-up-a-z,.fa-sort-alpha-up{--fa:"\f15e"}.fa-chess-knight{--fa:"\f441"}.fa-face-laugh-squint,.fa-laugh-squint{--fa:"\f59b"}.fa-wheelchair{--fa:"\f193"}.fa-arrow-circle-up,.fa-circle-arrow-up{--fa:"\f0aa"}.fa-toggle-on{--fa:"\f205"}.fa-person-walking,.fa-walking{--fa:"\f554"}.fa-l{--fa:"\4c"}.fa-fire{--fa:"\f06d"}.fa-bed-pulse,.fa-procedures{--fa:"\f487"}.fa-shuttle-space,.fa-space-shuttle{--fa:"\f197"}.fa-face-laugh,.fa-laugh{--fa:"\f599"}.fa-folder-open{--fa:"\f07c"}.fa-heart-circle-plus{--fa:"\e500"}.fa-code-fork{--fa:"\e13b"}.fa-city{--fa:"\f64f"}.fa-microphone-alt,.fa-microphone-lines{--fa:"\f3c9"}.fa-pepper-hot{--fa:"\f816"}.fa-unlock{--fa:"\f09c"}.fa-colon-sign{--fa:"\e140"}.fa-headset{--fa:"\f590"}.fa-store-slash{--fa:"\e071"}.fa-road-circle-xmark{--fa:"\e566"}.fa-user-minus{--fa:"\f503"}.fa-mars-stroke-up,.fa-mars-stroke-v{--fa:"\f22a"}.fa-champagne-glasses,.fa-glass-cheers{--fa:"\f79f"}.fa-clipboard{--fa:"\f328"}.fa-house-circle-exclamation{--fa:"\e50a"}.fa-file-arrow-up,.fa-file-upload{--fa:"\f574"}.fa-wifi,.fa-wifi-3,.fa-wifi-strong{--fa:"\f1eb"}.fa-bath,.fa-bathtub{--fa:"\f2cd"}.fa-underline{--fa:"\f0cd"}.fa-user-edit,.fa-user-pen{--fa:"\f4ff"}.fa-signature{--fa:"\f5b7"}.fa-stroopwafel{--fa:"\f551"}.fa-bold{--fa:"\f032"}.fa-anchor-lock{--fa:"\e4ad"}.fa-building-ngo{--fa:"\e4d7"}.fa-manat-sign{--fa:"\e1d5"}.fa-not-equal{--fa:"\f53e"}.fa-border-style,.fa-border-top-left{--fa:"\f853"}.fa-map-location-dot,.fa-map-marked-alt{--fa:"\f5a0"}.fa-jedi{--fa:"\f669"}.fa-poll,.fa-square-poll-vertical{--fa:"\f681"}.fa-mug-hot{--fa:"\f7b6"}.fa-battery-car,.fa-car-battery{--fa:"\f5df"}.fa-gift{--fa:"\f06b"}.fa-dice-two{--fa:"\f528"}.fa-chess-queen{--fa:"\f445"}.fa-glasses{--fa:"\f530"}.fa-chess-board{--fa:"\f43c"}.fa-building-circle-check{--fa:"\e4d2"}.fa-person-chalkboard{--fa:"\e53d"}.fa-mars-stroke-h,.fa-mars-stroke-right{--fa:"\f22b"}.fa-hand-back-fist,.fa-hand-rock{--fa:"\f255"}.fa-caret-square-up,.fa-square-caret-up{--fa:"\f151"}.fa-cloud-showers-water{--fa:"\e4e4"}.fa-bar-chart,.fa-chart-bar{--fa:"\f080"}.fa-hands-bubbles,.fa-hands-wash{--fa:"\e05e"}.fa-less-than-equal{--fa:"\f537"}.fa-train{--fa:"\f238"}.fa-eye-low-vision,.fa-low-vision{--fa:"\f2a8"}.fa-crow{--fa:"\f520"}.fa-sailboat{--fa:"\e445"}.fa-window-restore{--fa:"\f2d2"}.fa-plus-square,.fa-square-plus{--fa:"\f0fe"}.fa-torii-gate{--fa:"\f6a1"}.fa-frog{--fa:"\f52e"}.fa-bucket{--fa:"\e4cf"}.fa-image{--fa:"\f03e"}.fa-microphone{--fa:"\f130"}.fa-cow{--fa:"\f6c8"}.fa-caret-up{--fa:"\f0d8"}.fa-screwdriver{--fa:"\f54a"}.fa-folder-closed{--fa:"\e185"}.fa-house-tsunami{--fa:"\e515"}.fa-square-nfi{--fa:"\e576"}.fa-arrow-up-from-ground-water{--fa:"\e4b5"}.fa-glass-martini-alt,.fa-martini-glass{--fa:"\f57b"}.fa-square-binary{--fa:"\e69b"}.fa-rotate-back,.fa-rotate-backward,.fa-rotate-left,.fa-undo-alt{--fa:"\f2ea"}.fa-columns,.fa-table-columns{--fa:"\f0db"}.fa-lemon{--fa:"\f094"}.fa-head-side-mask{--fa:"\e063"}.fa-handshake{--fa:"\f2b5"}.fa-gem{--fa:"\f3a5"}.fa-dolly,.fa-dolly-box{--fa:"\f472"}.fa-smoking{--fa:"\f48d"}.fa-compress-arrows-alt,.fa-minimize{--fa:"\f78c"}.fa-monument{--fa:"\f5a6"}.fa-snowplow{--fa:"\f7d2"}.fa-angle-double-right,.fa-angles-right{--fa:"\f101"}.fa-cannabis{--fa:"\f55f"}.fa-circle-play,.fa-play-circle{--fa:"\f144"}.fa-tablets{--fa:"\f490"}.fa-ethernet{--fa:"\f796"}.fa-eur,.fa-euro,.fa-euro-sign{--fa:"\f153"}.fa-chair{--fa:"\f6c0"}.fa-check-circle,.fa-circle-check{--fa:"\f058"}.fa-circle-stop,.fa-stop-circle{--fa:"\f28d"}.fa-compass-drafting,.fa-drafting-compass{--fa:"\f568"}.fa-plate-wheat{--fa:"\e55a"}.fa-icicles{--fa:"\f7ad"}.fa-person-shelter{--fa:"\e54f"}.fa-neuter{--fa:"\f22c"}.fa-id-badge{--fa:"\f2c1"}.fa-marker{--fa:"\f5a1"}.fa-face-laugh-beam,.fa-laugh-beam{--fa:"\f59a"}.fa-helicopter-symbol{--fa:"\e502"}.fa-universal-access{--fa:"\f29a"}.fa-chevron-circle-up,.fa-circle-chevron-up{--fa:"\f139"}.fa-lari-sign{--fa:"\e1c8"}.fa-volcano{--fa:"\f770"}.fa-person-walking-dashed-line-arrow-right{--fa:"\e553"}.fa-gbp,.fa-pound-sign,.fa-sterling-sign{--fa:"\f154"}.fa-viruses{--fa:"\e076"}.fa-square-person-confined{--fa:"\e577"}.fa-user-tie{--fa:"\f508"}.fa-arrow-down-long,.fa-long-arrow-down{--fa:"\f175"}.fa-tent-arrow-down-to-line{--fa:"\e57e"}.fa-certificate{--fa:"\f0a3"}.fa-mail-reply-all,.fa-reply-all{--fa:"\f122"}.fa-suitcase{--fa:"\f0f2"}.fa-person-skating,.fa-skating{--fa:"\f7c5"}.fa-filter-circle-dollar,.fa-funnel-dollar{--fa:"\f662"}.fa-camera-retro{--fa:"\f083"}.fa-arrow-circle-down,.fa-circle-arrow-down{--fa:"\f0ab"}.fa-arrow-right-to-file,.fa-file-import{--fa:"\f56f"}.fa-external-link-square,.fa-square-arrow-up-right{--fa:"\f14c"}.fa-box-open{--fa:"\f49e"}.fa-scroll{--fa:"\f70e"}.fa-spa{--fa:"\f5bb"}.fa-location-pin-lock{--fa:"\e51f"}.fa-pause{--fa:"\f04c"}.fa-hill-avalanche{--fa:"\e507"}.fa-temperature-0,.fa-temperature-empty,.fa-thermometer-0,.fa-thermometer-empty{--fa:"\f2cb"}.fa-bomb{--fa:"\f1e2"}.fa-registered{--fa:"\f25d"}.fa-address-card,.fa-contact-card,.fa-vcard{--fa:"\f2bb"}.fa-balance-scale-right,.fa-scale-unbalanced-flip{--fa:"\f516"}.fa-subscript{--fa:"\f12c"}.fa-diamond-turn-right,.fa-directions{--fa:"\f5eb"}.fa-burst{--fa:"\e4dc"}.fa-house-laptop,.fa-laptop-house{--fa:"\e066"}.fa-face-tired,.fa-tired{--fa:"\f5c8"}.fa-money-bills{--fa:"\e1f3"}.fa-smog{--fa:"\f75f"}.fa-crutch{--fa:"\f7f7"}.fa-cloud-arrow-up,.fa-cloud-upload,.fa-cloud-upload-alt{--fa:"\f0ee"}.fa-palette{--fa:"\f53f"}.fa-arrows-turn-right{--fa:"\e4c0"}.fa-vest{--fa:"\e085"}.fa-ferry{--fa:"\e4ea"}.fa-arrows-down-to-people{--fa:"\e4b9"}.fa-seedling,.fa-sprout{--fa:"\f4d8"}.fa-arrows-alt-h,.fa-left-right{--fa:"\f337"}.fa-boxes-packing{--fa:"\e4c7"}.fa-arrow-circle-left,.fa-circle-arrow-left{--fa:"\f0a8"}.fa-group-arrows-rotate{--fa:"\e4f6"}.fa-bowl-food{--fa:"\e4c6"}.fa-candy-cane{--fa:"\f786"}.fa-arrow-down-wide-short,.fa-sort-amount-asc,.fa-sort-amount-down{--fa:"\f160"}.fa-cloud-bolt,.fa-thunderstorm{--fa:"\f76c"}.fa-remove-format,.fa-text-slash{--fa:"\f87d"}.fa-face-smile-wink,.fa-smile-wink{--fa:"\f4da"}.fa-file-word{--fa:"\f1c2"}.fa-file-powerpoint{--fa:"\f1c4"}.fa-arrows-h,.fa-arrows-left-right{--fa:"\f07e"}.fa-house-lock{--fa:"\e510"}.fa-cloud-arrow-down,.fa-cloud-download,.fa-cloud-download-alt{--fa:"\f0ed"}.fa-children{--fa:"\e4e1"}.fa-blackboard,.fa-chalkboard{--fa:"\f51b"}.fa-user-alt-slash,.fa-user-large-slash{--fa:"\f4fa"}.fa-envelope-open{--fa:"\f2b6"}.fa-handshake-alt-slash,.fa-handshake-simple-slash{--fa:"\e05f"}.fa-mattress-pillow{--fa:"\e525"}.fa-guarani-sign{--fa:"\e19a"}.fa-arrows-rotate,.fa-refresh,.fa-sync{--fa:"\f021"}.fa-fire-extinguisher{--fa:"\f134"}.fa-cruzeiro-sign{--fa:"\e152"}.fa-greater-than-equal{--fa:"\f532"}.fa-shield-alt,.fa-shield-halved{--fa:"\f3ed"}.fa-atlas,.fa-book-atlas{--fa:"\f558"}.fa-virus{--fa:"\e074"}.fa-envelope-circle-check{--fa:"\e4e8"}.fa-layer-group{--fa:"\f5fd"}.fa-arrows-to-dot{--fa:"\e4be"}.fa-archway{--fa:"\f557"}.fa-heart-circle-check{--fa:"\e4fd"}.fa-house-chimney-crack,.fa-house-damage{--fa:"\f6f1"}.fa-file-archive,.fa-file-zipper{--fa:"\f1c6"}.fa-square{--fa:"\f0c8"}.fa-glass-martini,.fa-martini-glass-empty{--fa:"\f000"}.fa-couch{--fa:"\f4b8"}.fa-cedi-sign{--fa:"\e0df"}.fa-italic{--fa:"\f033"}.fa-table-cells-column-lock{--fa:"\e678"}.fa-church{--fa:"\f51d"}.fa-comments-dollar{--fa:"\f653"}.fa-democrat{--fa:"\f747"}.fa-z{--fa:"\5a"}.fa-person-skiing,.fa-skiing{--fa:"\f7c9"}.fa-road-lock{--fa:"\e567"}.fa-a{--fa:"\41"}.fa-temperature-arrow-down,.fa-temperature-down{--fa:"\e03f"}.fa-feather-alt,.fa-feather-pointed{--fa:"\f56b"}.fa-p{--fa:"\50"}.fa-snowflake{--fa:"\f2dc"}.fa-newspaper{--fa:"\f1ea"}.fa-ad,.fa-rectangle-ad{--fa:"\f641"}.fa-arrow-circle-right,.fa-circle-arrow-right{--fa:"\f0a9"}.fa-filter-circle-xmark{--fa:"\e17b"}.fa-locust{--fa:"\e520"}.fa-sort,.fa-unsorted{--fa:"\f0dc"}.fa-list-1-2,.fa-list-numeric,.fa-list-ol{--fa:"\f0cb"}.fa-person-dress-burst{--fa:"\e544"}.fa-money-check-alt,.fa-money-check-dollar{--fa:"\f53d"}.fa-vector-square{--fa:"\f5cb"}.fa-bread-slice{--fa:"\f7ec"}.fa-language{--fa:"\f1ab"}.fa-face-kiss-wink-heart,.fa-kiss-wink-heart{--fa:"\f598"}.fa-filter{--fa:"\f0b0"}.fa-question{--fa:"\3f"}.fa-file-signature{--fa:"\f573"}.fa-arrows-alt,.fa-up-down-left-right{--fa:"\f0b2"}.fa-house-chimney-user{--fa:"\e065"}.fa-hand-holding-heart{--fa:"\f4be"}.fa-puzzle-piece{--fa:"\f12e"}.fa-money-check{--fa:"\f53c"}.fa-star-half-alt,.fa-star-half-stroke{--fa:"\f5c0"}.fa-code{--fa:"\f121"}.fa-glass-whiskey,.fa-whiskey-glass{--fa:"\f7a0"}.fa-building-circle-exclamation{--fa:"\e4d3"}.fa-magnifying-glass-chart{--fa:"\e522"}.fa-arrow-up-right-from-square,.fa-external-link{--fa:"\f08e"}.fa-cubes-stacked{--fa:"\e4e6"}.fa-krw,.fa-won,.fa-won-sign{--fa:"\f159"}.fa-virus-covid{--fa:"\e4a8"}.fa-austral-sign{--fa:"\e0a9"}.fa-f{--fa:"\46"}.fa-leaf{--fa:"\f06c"}.fa-road{--fa:"\f018"}.fa-cab,.fa-taxi{--fa:"\f1ba"}.fa-person-circle-plus{--fa:"\e541"}.fa-chart-pie,.fa-pie-chart{--fa:"\f200"}.fa-bolt-lightning{--fa:"\e0b7"}.fa-sack-xmark{--fa:"\e56a"}.fa-file-excel{--fa:"\f1c3"}.fa-file-contract{--fa:"\f56c"}.fa-fish-fins{--fa:"\e4f2"}.fa-building-flag{--fa:"\e4d5"}.fa-face-grin-beam,.fa-grin-beam{--fa:"\f582"}.fa-object-ungroup{--fa:"\f248"}.fa-poop{--fa:"\f619"}.fa-location-pin,.fa-map-marker{--fa:"\f041"}.fa-kaaba{--fa:"\f66b"}.fa-toilet-paper{--fa:"\f71e"}.fa-hard-hat,.fa-hat-hard,.fa-helmet-safety{--fa:"\f807"}.fa-eject{--fa:"\f052"}.fa-arrow-alt-circle-right,.fa-circle-right{--fa:"\f35a"}.fa-plane-circle-check{--fa:"\e555"}.fa-face-rolling-eyes,.fa-meh-rolling-eyes{--fa:"\f5a5"}.fa-object-group{--fa:"\f247"}.fa-chart-line,.fa-line-chart{--fa:"\f201"}.fa-mask-ventilator{--fa:"\e524"}.fa-arrow-right{--fa:"\f061"}.fa-map-signs,.fa-signs-post{--fa:"\f277"}.fa-cash-register{--fa:"\f788"}.fa-person-circle-question{--fa:"\e542"}.fa-h{--fa:"\48"}.fa-tarp{--fa:"\e57b"}.fa-screwdriver-wrench,.fa-tools{--fa:"\f7d9"}.fa-arrows-to-eye{--fa:"\e4bf"}.fa-plug-circle-bolt{--fa:"\e55b"}.fa-heart{--fa:"\f004"}.fa-mars-and-venus{--fa:"\f224"}.fa-home-user,.fa-house-user{--fa:"\e1b0"}.fa-dumpster-fire{--fa:"\f794"}.fa-house-crack{--fa:"\e3b1"}.fa-cocktail,.fa-martini-glass-citrus{--fa:"\f561"}.fa-face-surprise,.fa-surprise{--fa:"\f5c2"}.fa-bottle-water{--fa:"\e4c5"}.fa-circle-pause,.fa-pause-circle{--fa:"\f28b"}.fa-toilet-paper-slash{--fa:"\e072"}.fa-apple-alt,.fa-apple-whole{--fa:"\f5d1"}.fa-kitchen-set{--fa:"\e51a"}.fa-r{--fa:"\52"}.fa-temperature-1,.fa-temperature-quarter,.fa-thermometer-1,.fa-thermometer-quarter{--fa:"\f2ca"}.fa-cube{--fa:"\f1b2"}.fa-bitcoin-sign{--fa:"\e0b4"}.fa-shield-dog{--fa:"\e573"}.fa-solar-panel{--fa:"\f5ba"}.fa-lock-open{--fa:"\f3c1"}.fa-elevator{--fa:"\e16d"}.fa-money-bill-transfer{--fa:"\e528"}.fa-money-bill-trend-up{--fa:"\e529"}.fa-house-flood-water-circle-arrow-right{--fa:"\e50f"}.fa-poll-h,.fa-square-poll-horizontal{--fa:"\f682"}.fa-circle{--fa:"\f111"}.fa-backward-fast,.fa-fast-backward{--fa:"\f049"}.fa-recycle{--fa:"\f1b8"}.fa-user-astronaut{--fa:"\f4fb"}.fa-plane-slash{--fa:"\e069"}.fa-trademark{--fa:"\f25c"}.fa-basketball,.fa-basketball-ball{--fa:"\f434"}.fa-satellite-dish{--fa:"\f7c0"}.fa-arrow-alt-circle-up,.fa-circle-up{--fa:"\f35b"}.fa-mobile-alt,.fa-mobile-screen-button{--fa:"\f3cd"}.fa-volume-high,.fa-volume-up{--fa:"\f028"}.fa-users-rays{--fa:"\e593"}.fa-wallet{--fa:"\f555"}.fa-clipboard-check{--fa:"\f46c"}.fa-file-audio{--fa:"\f1c7"}.fa-burger,.fa-hamburger{--fa:"\f805"}.fa-wrench{--fa:"\f0ad"}.fa-bugs{--fa:"\e4d0"}.fa-rupee,.fa-rupee-sign{--fa:"\f156"}.fa-file-image{--fa:"\f1c5"}.fa-circle-question,.fa-question-circle{--fa:"\f059"}.fa-plane-departure{--fa:"\f5b0"}.fa-handshake-slash{--fa:"\e060"}.fa-book-bookmark{--fa:"\e0bb"}.fa-code-branch{--fa:"\f126"}.fa-hat-cowboy{--fa:"\f8c0"}.fa-bridge{--fa:"\e4c8"}.fa-phone-alt,.fa-phone-flip{--fa:"\f879"}.fa-truck-front{--fa:"\e2b7"}.fa-cat{--fa:"\f6be"}.fa-anchor-circle-exclamation{--fa:"\e4ab"}.fa-truck-field{--fa:"\e58d"}.fa-route{--fa:"\f4d7"}.fa-clipboard-question{--fa:"\e4e3"}.fa-panorama{--fa:"\e209"}.fa-comment-medical{--fa:"\f7f5"}.fa-teeth-open{--fa:"\f62f"}.fa-file-circle-minus{--fa:"\e4ed"}.fa-tags{--fa:"\f02c"}.fa-wine-glass{--fa:"\f4e3"}.fa-fast-forward,.fa-forward-fast{--fa:"\f050"}.fa-face-meh-blank,.fa-meh-blank{--fa:"\f5a4"}.fa-parking,.fa-square-parking{--fa:"\f540"}.fa-house-signal{--fa:"\e012"}.fa-bars-progress,.fa-tasks-alt{--fa:"\f828"}.fa-faucet-drip{--fa:"\e006"}.fa-cart-flatbed,.fa-dolly-flatbed{--fa:"\f474"}.fa-ban-smoking,.fa-smoking-ban{--fa:"\f54d"}.fa-terminal{--fa:"\f120"}.fa-mobile-button{--fa:"\f10b"}.fa-house-medical-flag{--fa:"\e514"}.fa-basket-shopping,.fa-shopping-basket{--fa:"\f291"}.fa-tape{--fa:"\f4db"}.fa-bus-alt,.fa-bus-simple{--fa:"\f55e"}.fa-eye{--fa:"\f06e"}.fa-face-sad-cry,.fa-sad-cry{--fa:"\f5b3"}.fa-audio-description{--fa:"\f29e"}.fa-person-military-to-person{--fa:"\e54c"}.fa-file-shield{--fa:"\e4f0"}.fa-user-slash{--fa:"\f506"}.fa-pen{--fa:"\f304"}.fa-tower-observation{--fa:"\e586"}.fa-file-code{--fa:"\f1c9"}.fa-signal,.fa-signal-5,.fa-signal-perfect{--fa:"\f012"}.fa-bus{--fa:"\f207"}.fa-heart-circle-xmark{--fa:"\e501"}.fa-home-lg,.fa-house-chimney{--fa:"\e3af"}.fa-window-maximize{--fa:"\f2d0"}.fa-face-frown,.fa-frown{--fa:"\f119"}.fa-prescription{--fa:"\f5b1"}.fa-shop,.fa-store-alt{--fa:"\f54f"}.fa-floppy-disk,.fa-save{--fa:"\f0c7"}.fa-vihara{--fa:"\f6a7"}.fa-balance-scale-left,.fa-scale-unbalanced{--fa:"\f515"}.fa-sort-asc,.fa-sort-up{--fa:"\f0de"}.fa-comment-dots,.fa-commenting{--fa:"\f4ad"}.fa-plant-wilt{--fa:"\e5aa"}.fa-diamond{--fa:"\f219"}.fa-face-grin-squint,.fa-grin-squint{--fa:"\f585"}.fa-hand-holding-dollar,.fa-hand-holding-usd{--fa:"\f4c0"}.fa-chart-diagram{--fa:"\e695"}.fa-bacterium{--fa:"\e05a"}.fa-hand-pointer{--fa:"\f25a"}.fa-drum-steelpan{--fa:"\f56a"}.fa-hand-scissors{--fa:"\f257"}.fa-hands-praying,.fa-praying-hands{--fa:"\f684"}.fa-arrow-right-rotate,.fa-arrow-rotate-forward,.fa-arrow-rotate-right,.fa-redo{--fa:"\f01e"}.fa-biohazard{--fa:"\f780"}.fa-location,.fa-location-crosshairs{--fa:"\f601"}.fa-mars-double{--fa:"\f227"}.fa-child-dress{--fa:"\e59c"}.fa-users-between-lines{--fa:"\e591"}.fa-lungs-virus{--fa:"\e067"}.fa-face-grin-tears,.fa-grin-tears{--fa:"\f588"}.fa-phone{--fa:"\f095"}.fa-calendar-times,.fa-calendar-xmark{--fa:"\f273"}.fa-child-reaching{--fa:"\e59d"}.fa-head-side-virus{--fa:"\e064"}.fa-user-cog,.fa-user-gear{--fa:"\f4fe"}.fa-arrow-up-1-9,.fa-sort-numeric-up{--fa:"\f163"}.fa-door-closed{--fa:"\f52a"}.fa-shield-virus{--fa:"\e06c"}.fa-dice-six{--fa:"\f526"}.fa-mosquito-net{--fa:"\e52c"}.fa-file-fragment{--fa:"\e697"}.fa-bridge-water{--fa:"\e4ce"}.fa-person-booth{--fa:"\f756"}.fa-text-width{--fa:"\f035"}.fa-hat-wizard{--fa:"\f6e8"}.fa-pen-fancy{--fa:"\f5ac"}.fa-digging,.fa-person-digging{--fa:"\f85e"}.fa-trash{--fa:"\f1f8"}.fa-gauge-simple,.fa-gauge-simple-med,.fa-tachometer-average{--fa:"\f629"}.fa-book-medical{--fa:"\f7e6"}.fa-poo{--fa:"\f2fe"}.fa-quote-right,.fa-quote-right-alt{--fa:"\f10e"}.fa-shirt,.fa-t-shirt,.fa-tshirt{--fa:"\f553"}.fa-cubes{--fa:"\f1b3"}.fa-divide{--fa:"\f529"}.fa-tenge,.fa-tenge-sign{--fa:"\f7d7"}.fa-headphones{--fa:"\f025"}.fa-hands-holding{--fa:"\f4c2"}.fa-hands-clapping{--fa:"\e1a8"}.fa-republican{--fa:"\f75e"}.fa-arrow-left{--fa:"\f060"}.fa-person-circle-xmark{--fa:"\e543"}.fa-ruler{--fa:"\f545"}.fa-align-left{--fa:"\f036"}.fa-dice-d6{--fa:"\f6d1"}.fa-restroom{--fa:"\f7bd"}.fa-j{--fa:"\4a"}.fa-users-viewfinder{--fa:"\e595"}.fa-file-video{--fa:"\f1c8"}.fa-external-link-alt,.fa-up-right-from-square{--fa:"\f35d"}.fa-table-cells,.fa-th{--fa:"\f00a"}.fa-file-pdf{--fa:"\f1c1"}.fa-bible,.fa-book-bible{--fa:"\f647"}.fa-o{--fa:"\4f"}.fa-medkit,.fa-suitcase-medical{--fa:"\f0fa"}.fa-user-secret{--fa:"\f21b"}.fa-otter{--fa:"\f700"}.fa-female,.fa-person-dress{--fa:"\f182"}.fa-comment-dollar{--fa:"\f651"}.fa-briefcase-clock,.fa-business-time{--fa:"\f64a"}.fa-table-cells-large,.fa-th-large{--fa:"\f009"}.fa-book-tanakh,.fa-tanakh{--fa:"\f827"}.fa-phone-volume,.fa-volume-control-phone{--fa:"\f2a0"}.fa-hat-cowboy-side{--fa:"\f8c1"}.fa-clipboard-user{--fa:"\f7f3"}.fa-child{--fa:"\f1ae"}.fa-lira-sign{--fa:"\f195"}.fa-satellite{--fa:"\f7bf"}.fa-plane-lock{--fa:"\e558"}.fa-tag{--fa:"\f02b"}.fa-comment{--fa:"\f075"}.fa-birthday-cake,.fa-cake,.fa-cake-candles{--fa:"\f1fd"}.fa-envelope{--fa:"\f0e0"}.fa-angle-double-up,.fa-angles-up{--fa:"\f102"}.fa-paperclip{--fa:"\f0c6"}.fa-arrow-right-to-city{--fa:"\e4b3"}.fa-ribbon{--fa:"\f4d6"}.fa-lungs{--fa:"\f604"}.fa-arrow-up-9-1,.fa-sort-numeric-up-alt{--fa:"\f887"}.fa-litecoin-sign{--fa:"\e1d3"}.fa-border-none{--fa:"\f850"}.fa-circle-nodes{--fa:"\e4e2"}.fa-parachute-box{--fa:"\f4cd"}.fa-indent{--fa:"\f03c"}.fa-truck-field-un{--fa:"\e58e"}.fa-hourglass,.fa-hourglass-empty{--fa:"\f254"}.fa-mountain{--fa:"\f6fc"}.fa-user-doctor,.fa-user-md{--fa:"\f0f0"}.fa-circle-info,.fa-info-circle{--fa:"\f05a"}.fa-cloud-meatball{--fa:"\f73b"}.fa-camera,.fa-camera-alt{--fa:"\f030"}.fa-square-virus{--fa:"\e578"}.fa-meteor{--fa:"\f753"}.fa-car-on{--fa:"\e4dd"}.fa-sleigh{--fa:"\f7cc"}.fa-arrow-down-1-9,.fa-sort-numeric-asc,.fa-sort-numeric-down{--fa:"\f162"}.fa-hand-holding-droplet,.fa-hand-holding-water{--fa:"\f4c1"}.fa-water{--fa:"\f773"}.fa-calendar-check{--fa:"\f274"}.fa-braille{--fa:"\f2a1"}.fa-prescription-bottle-alt,.fa-prescription-bottle-medical{--fa:"\f486"}.fa-landmark{--fa:"\f66f"}.fa-truck{--fa:"\f0d1"}.fa-crosshairs{--fa:"\f05b"}.fa-person-cane{--fa:"\e53c"}.fa-tent{--fa:"\e57d"}.fa-vest-patches{--fa:"\e086"}.fa-check-double{--fa:"\f560"}.fa-arrow-down-a-z,.fa-sort-alpha-asc,.fa-sort-alpha-down{--fa:"\f15d"}.fa-money-bill-wheat{--fa:"\e52a"}.fa-cookie{--fa:"\f563"}.fa-arrow-left-rotate,.fa-arrow-rotate-back,.fa-arrow-rotate-backward,.fa-arrow-rotate-left,.fa-undo{--fa:"\f0e2"}.fa-hard-drive,.fa-hdd{--fa:"\f0a0"}.fa-face-grin-squint-tears,.fa-grin-squint-tears{--fa:"\f586"}.fa-dumbbell{--fa:"\f44b"}.fa-list-alt,.fa-rectangle-list{--fa:"\f022"}.fa-tarp-droplet{--fa:"\e57c"}.fa-house-medical-circle-check{--fa:"\e511"}.fa-person-skiing-nordic,.fa-skiing-nordic{--fa:"\f7ca"}.fa-calendar-plus{--fa:"\f271"}.fa-plane-arrival{--fa:"\f5af"}.fa-arrow-alt-circle-left,.fa-circle-left{--fa:"\f359"}.fa-subway,.fa-train-subway{--fa:"\f239"}.fa-chart-gantt{--fa:"\e0e4"}.fa-indian-rupee,.fa-indian-rupee-sign,.fa-inr{--fa:"\e1bc"}.fa-crop-alt,.fa-crop-simple{--fa:"\f565"}.fa-money-bill-1,.fa-money-bill-alt{--fa:"\f3d1"}.fa-left-long,.fa-long-arrow-alt-left{--fa:"\f30a"}.fa-dna{--fa:"\f471"}.fa-virus-slash{--fa:"\e075"}.fa-minus,.fa-subtract{--fa:"\f068"}.fa-chess{--fa:"\f439"}.fa-arrow-left-long,.fa-long-arrow-left{--fa:"\f177"}.fa-plug-circle-check{--fa:"\e55c"}.fa-street-view{--fa:"\f21d"}.fa-franc-sign{--fa:"\e18f"}.fa-volume-off{--fa:"\f026"}.fa-american-sign-language-interpreting,.fa-asl-interpreting,.fa-hands-american-sign-language-interpreting,.fa-hands-asl-interpreting{--fa:"\f2a3"}.fa-cog,.fa-gear{--fa:"\f013"}.fa-droplet-slash,.fa-tint-slash{--fa:"\f5c7"}.fa-mosque{--fa:"\f678"}.fa-mosquito{--fa:"\e52b"}.fa-star-of-david{--fa:"\f69a"}.fa-person-military-rifle{--fa:"\e54b"}.fa-cart-shopping,.fa-shopping-cart{--fa:"\f07a"}.fa-vials{--fa:"\f493"}.fa-plug-circle-plus{--fa:"\e55f"}.fa-place-of-worship{--fa:"\f67f"}.fa-grip-vertical{--fa:"\f58e"}.fa-hexagon-nodes{--fa:"\e699"}.fa-arrow-turn-up,.fa-level-up{--fa:"\f148"}.fa-u{--fa:"\55"}.fa-square-root-alt,.fa-square-root-variable{--fa:"\f698"}.fa-clock,.fa-clock-four{--fa:"\f017"}.fa-backward-step,.fa-step-backward{--fa:"\f048"}.fa-pallet{--fa:"\f482"}.fa-faucet{--fa:"\e005"}.fa-baseball-bat-ball{--fa:"\f432"}.fa-s{--fa:"\53"}.fa-timeline{--fa:"\e29c"}.fa-keyboard{--fa:"\f11c"}.fa-caret-down{--fa:"\f0d7"}.fa-clinic-medical,.fa-house-chimney-medical{--fa:"\f7f2"}.fa-temperature-3,.fa-temperature-three-quarters,.fa-thermometer-3,.fa-thermometer-three-quarters{--fa:"\f2c8"}.fa-mobile-android-alt,.fa-mobile-screen{--fa:"\f3cf"}.fa-plane-up{--fa:"\e22d"}.fa-piggy-bank{--fa:"\f4d3"}.fa-battery-3,.fa-battery-half{--fa:"\f242"}.fa-mountain-city{--fa:"\e52e"}.fa-coins{--fa:"\f51e"}.fa-khanda{--fa:"\f66d"}.fa-sliders,.fa-sliders-h{--fa:"\f1de"}.fa-folder-tree{--fa:"\f802"}.fa-network-wired{--fa:"\f6ff"}.fa-map-pin{--fa:"\f276"}.fa-hamsa{--fa:"\f665"}.fa-cent-sign{--fa:"\e3f5"}.fa-flask{--fa:"\f0c3"}.fa-person-pregnant{--fa:"\e31e"}.fa-wand-sparkles{--fa:"\f72b"}.fa-ellipsis-v,.fa-ellipsis-vertical{--fa:"\f142"}.fa-ticket{--fa:"\f145"}.fa-power-off{--fa:"\f011"}.fa-long-arrow-alt-right,.fa-right-long{--fa:"\f30b"}.fa-flag-usa{--fa:"\f74d"}.fa-laptop-file{--fa:"\e51d"}.fa-teletype,.fa-tty{--fa:"\f1e4"}.fa-diagram-next{--fa:"\e476"}.fa-person-rifle{--fa:"\e54e"}.fa-house-medical-circle-exclamation{--fa:"\e512"}.fa-closed-captioning{--fa:"\f20a"}.fa-hiking,.fa-person-hiking{--fa:"\f6ec"}.fa-venus-double{--fa:"\f226"}.fa-images{--fa:"\f302"}.fa-calculator{--fa:"\f1ec"}.fa-people-pulling{--fa:"\e535"}.fa-n{--fa:"\4e"}.fa-cable-car,.fa-tram{--fa:"\f7da"}.fa-cloud-rain{--fa:"\f73d"}.fa-building-circle-xmark{--fa:"\e4d4"}.fa-ship{--fa:"\f21a"}.fa-arrows-down-to-line{--fa:"\e4b8"}.fa-download{--fa:"\f019"}.fa-face-grin,.fa-grin{--fa:"\f580"}.fa-backspace,.fa-delete-left{--fa:"\f55a"}.fa-eye-dropper,.fa-eye-dropper-empty,.fa-eyedropper{--fa:"\f1fb"}.fa-file-circle-check{--fa:"\e5a0"}.fa-forward{--fa:"\f04e"}.fa-mobile,.fa-mobile-android,.fa-mobile-phone{--fa:"\f3ce"}.fa-face-meh,.fa-meh{--fa:"\f11a"}.fa-align-center{--fa:"\f037"}.fa-book-dead,.fa-book-skull{--fa:"\f6b7"}.fa-drivers-license,.fa-id-card{--fa:"\f2c2"}.fa-dedent,.fa-outdent{--fa:"\f03b"}.fa-heart-circle-exclamation{--fa:"\e4fe"}.fa-home,.fa-home-alt,.fa-home-lg-alt,.fa-house{--fa:"\f015"}.fa-calendar-week{--fa:"\f784"}.fa-laptop-medical{--fa:"\f812"}.fa-b{--fa:"\42"}.fa-file-medical{--fa:"\f477"}.fa-dice-one{--fa:"\f525"}.fa-kiwi-bird{--fa:"\f535"}.fa-arrow-right-arrow-left,.fa-exchange{--fa:"\f0ec"}.fa-redo-alt,.fa-rotate-forward,.fa-rotate-right{--fa:"\f2f9"}.fa-cutlery,.fa-utensils{--fa:"\f2e7"}.fa-arrow-up-wide-short,.fa-sort-amount-up{--fa:"\f161"}.fa-mill-sign{--fa:"\e1ed"}.fa-bowl-rice{--fa:"\e2eb"}.fa-skull{--fa:"\f54c"}.fa-broadcast-tower,.fa-tower-broadcast{--fa:"\f519"}.fa-truck-pickup{--fa:"\f63c"}.fa-long-arrow-alt-up,.fa-up-long{--fa:"\f30c"}.fa-stop{--fa:"\f04d"}.fa-code-merge{--fa:"\f387"}.fa-upload{--fa:"\f093"}.fa-hurricane{--fa:"\f751"}.fa-mound{--fa:"\e52d"}.fa-toilet-portable{--fa:"\e583"}.fa-compact-disc{--fa:"\f51f"}.fa-file-arrow-down,.fa-file-download{--fa:"\f56d"}.fa-caravan{--fa:"\f8ff"}.fa-shield-cat{--fa:"\e572"}.fa-bolt,.fa-zap{--fa:"\f0e7"}.fa-glass-water{--fa:"\e4f4"}.fa-oil-well{--fa:"\e532"}.fa-vault{--fa:"\e2c5"}.fa-mars{--fa:"\f222"}.fa-toilet{--fa:"\f7d8"}.fa-plane-circle-xmark{--fa:"\e557"}.fa-cny,.fa-jpy,.fa-rmb,.fa-yen,.fa-yen-sign{--fa:"\f157"}.fa-rouble,.fa-rub,.fa-ruble,.fa-ruble-sign{--fa:"\f158"}.fa-sun{--fa:"\f185"}.fa-guitar{--fa:"\f7a6"}.fa-face-laugh-wink,.fa-laugh-wink{--fa:"\f59c"}.fa-horse-head{--fa:"\f7ab"}.fa-bore-hole{--fa:"\e4c3"}.fa-industry{--fa:"\f275"}.fa-arrow-alt-circle-down,.fa-circle-down{--fa:"\f358"}.fa-arrows-turn-to-dots{--fa:"\e4c1"}.fa-florin-sign{--fa:"\e184"}.fa-arrow-down-short-wide,.fa-sort-amount-desc,.fa-sort-amount-down-alt{--fa:"\f884"}.fa-less-than{--fa:"\3c"}.fa-angle-down{--fa:"\f107"}.fa-car-tunnel{--fa:"\e4de"}.fa-head-side-cough{--fa:"\e061"}.fa-grip-lines{--fa:"\f7a4"}.fa-thumbs-down{--fa:"\f165"}.fa-user-lock{--fa:"\f502"}.fa-arrow-right-long,.fa-long-arrow-right{--fa:"\f178"}.fa-anchor-circle-xmark{--fa:"\e4ac"}.fa-ellipsis,.fa-ellipsis-h{--fa:"\f141"}.fa-chess-pawn{--fa:"\f443"}.fa-first-aid,.fa-kit-medical{--fa:"\f479"}.fa-person-through-window{--fa:"\e5a9"}.fa-toolbox{--fa:"\f552"}.fa-hands-holding-circle{--fa:"\e4fb"}.fa-bug{--fa:"\f188"}.fa-credit-card,.fa-credit-card-alt{--fa:"\f09d"}.fa-automobile,.fa-car{--fa:"\f1b9"}.fa-hand-holding-hand{--fa:"\e4f7"}.fa-book-open-reader,.fa-book-reader{--fa:"\f5da"}.fa-mountain-sun{--fa:"\e52f"}.fa-arrows-left-right-to-line{--fa:"\e4ba"}.fa-dice-d20{--fa:"\f6cf"}.fa-truck-droplet{--fa:"\e58c"}.fa-file-circle-xmark{--fa:"\e5a1"}.fa-temperature-arrow-up,.fa-temperature-up{--fa:"\e040"}.fa-medal{--fa:"\f5a2"}.fa-bed{--fa:"\f236"}.fa-h-square,.fa-square-h{--fa:"\f0fd"}.fa-podcast{--fa:"\f2ce"}.fa-temperature-4,.fa-temperature-full,.fa-thermometer-4,.fa-thermometer-full{--fa:"\f2c7"}.fa-bell{--fa:"\f0f3"}.fa-superscript{--fa:"\f12b"}.fa-plug-circle-xmark{--fa:"\e560"}.fa-star-of-life{--fa:"\f621"}.fa-phone-slash{--fa:"\f3dd"}.fa-paint-roller{--fa:"\f5aa"}.fa-hands-helping,.fa-handshake-angle{--fa:"\f4c4"}.fa-location-dot,.fa-map-marker-alt{--fa:"\f3c5"}.fa-file{--fa:"\f15b"}.fa-greater-than{--fa:"\3e"}.fa-person-swimming,.fa-swimmer{--fa:"\f5c4"}.fa-arrow-down{--fa:"\f063"}.fa-droplet,.fa-tint{--fa:"\f043"}.fa-eraser{--fa:"\f12d"}.fa-earth,.fa-earth-america,.fa-earth-americas,.fa-globe-americas{--fa:"\f57d"}.fa-person-burst{--fa:"\e53b"}.fa-dove{--fa:"\f4ba"}.fa-battery-0,.fa-battery-empty{--fa:"\f244"}.fa-socks{--fa:"\f696"}.fa-inbox{--fa:"\f01c"}.fa-section{--fa:"\e447"}.fa-gauge-high,.fa-tachometer-alt,.fa-tachometer-alt-fast{--fa:"\f625"}.fa-envelope-open-text{--fa:"\f658"}.fa-hospital,.fa-hospital-alt,.fa-hospital-wide{--fa:"\f0f8"}.fa-wine-bottle{--fa:"\f72f"}.fa-chess-rook{--fa:"\f447"}.fa-bars-staggered,.fa-reorder,.fa-stream{--fa:"\f550"}.fa-dharmachakra{--fa:"\f655"}.fa-hotdog{--fa:"\f80f"}.fa-blind,.fa-person-walking-with-cane{--fa:"\f29d"}.fa-drum{--fa:"\f569"}.fa-ice-cream{--fa:"\f810"}.fa-heart-circle-bolt{--fa:"\e4fc"}.fa-fax{--fa:"\f1ac"}.fa-paragraph{--fa:"\f1dd"}.fa-check-to-slot,.fa-vote-yea{--fa:"\f772"}.fa-star-half{--fa:"\f089"}.fa-boxes,.fa-boxes-alt,.fa-boxes-stacked{--fa:"\f468"}.fa-chain,.fa-link{--fa:"\f0c1"}.fa-assistive-listening-systems,.fa-ear-listen{--fa:"\f2a2"}.fa-tree-city{--fa:"\e587"}.fa-play{--fa:"\f04b"}.fa-font{--fa:"\f031"}.fa-table-cells-row-lock{--fa:"\e67a"}.fa-rupiah-sign{--fa:"\e23d"}.fa-magnifying-glass,.fa-search{--fa:"\f002"}.fa-ping-pong-paddle-ball,.fa-table-tennis,.fa-table-tennis-paddle-ball{--fa:"\f45d"}.fa-diagnoses,.fa-person-dots-from-line{--fa:"\f470"}.fa-trash-can-arrow-up,.fa-trash-restore-alt{--fa:"\f82a"}.fa-naira-sign{--fa:"\e1f6"}.fa-cart-arrow-down{--fa:"\f218"}.fa-walkie-talkie{--fa:"\f8ef"}.fa-file-edit,.fa-file-pen{--fa:"\f31c"}.fa-receipt{--fa:"\f543"}.fa-pen-square,.fa-pencil-square,.fa-square-pen{--fa:"\f14b"}.fa-suitcase-rolling{--fa:"\f5c1"}.fa-person-circle-exclamation{--fa:"\e53f"}.fa-chevron-down{--fa:"\f078"}.fa-battery,.fa-battery-5,.fa-battery-full{--fa:"\f240"}.fa-skull-crossbones{--fa:"\f714"}.fa-code-compare{--fa:"\e13a"}.fa-list-dots,.fa-list-ul{--fa:"\f0ca"}.fa-school-lock{--fa:"\e56f"}.fa-tower-cell{--fa:"\e585"}.fa-down-long,.fa-long-arrow-alt-down{--fa:"\f309"}.fa-ranking-star{--fa:"\e561"}.fa-chess-king{--fa:"\f43f"}.fa-person-harassing{--fa:"\e549"}.fa-brazilian-real-sign{--fa:"\e46c"}.fa-landmark-alt,.fa-landmark-dome{--fa:"\f752"}.fa-arrow-up{--fa:"\f062"}.fa-television,.fa-tv,.fa-tv-alt{--fa:"\f26c"}.fa-shrimp{--fa:"\e448"}.fa-list-check,.fa-tasks{--fa:"\f0ae"}.fa-jug-detergent{--fa:"\e519"}.fa-circle-user,.fa-user-circle{--fa:"\f2bd"}.fa-user-shield{--fa:"\f505"}.fa-wind{--fa:"\f72e"}.fa-car-burst,.fa-car-crash{--fa:"\f5e1"}.fa-y{--fa:"\59"}.fa-person-snowboarding,.fa-snowboarding{--fa:"\f7ce"}.fa-shipping-fast,.fa-truck-fast{--fa:"\f48b"}.fa-fish{--fa:"\f578"}.fa-user-graduate{--fa:"\f501"}.fa-adjust,.fa-circle-half-stroke{--fa:"\f042"}.fa-clapperboard{--fa:"\e131"}.fa-circle-radiation,.fa-radiation-alt{--fa:"\f7ba"}.fa-baseball,.fa-baseball-ball{--fa:"\f433"}.fa-jet-fighter-up{--fa:"\e518"}.fa-diagram-project,.fa-project-diagram{--fa:"\f542"}.fa-copy{--fa:"\f0c5"}.fa-volume-mute,.fa-volume-times,.fa-volume-xmark{--fa:"\f6a9"}.fa-hand-sparkles{--fa:"\e05d"}.fa-grip,.fa-grip-horizontal{--fa:"\f58d"}.fa-share-from-square,.fa-share-square{--fa:"\f14d"}.fa-child-combatant,.fa-child-rifle{--fa:"\e4e0"}.fa-gun{--fa:"\e19b"}.fa-phone-square,.fa-square-phone{--fa:"\f098"}.fa-add,.fa-plus{--fa:"\2b"}.fa-expand{--fa:"\f065"}.fa-computer{--fa:"\e4e5"}.fa-close,.fa-multiply,.fa-remove,.fa-times,.fa-xmark{--fa:"\f00d"}.fa-arrows,.fa-arrows-up-down-left-right{--fa:"\f047"}.fa-chalkboard-teacher,.fa-chalkboard-user{--fa:"\f51c"}.fa-peso-sign{--fa:"\e222"}.fa-building-shield{--fa:"\e4d8"}.fa-baby{--fa:"\f77c"}.fa-users-line{--fa:"\e592"}.fa-quote-left,.fa-quote-left-alt{--fa:"\f10d"}.fa-tractor{--fa:"\f722"}.fa-trash-arrow-up,.fa-trash-restore{--fa:"\f829"}.fa-arrow-down-up-lock{--fa:"\e4b0"}.fa-lines-leaning{--fa:"\e51e"}.fa-ruler-combined{--fa:"\f546"}.fa-copyright{--fa:"\f1f9"}.fa-equals{--fa:"\3d"}.fa-blender{--fa:"\f517"}.fa-teeth{--fa:"\f62e"}.fa-ils,.fa-shekel,.fa-shekel-sign,.fa-sheqel,.fa-sheqel-sign{--fa:"\f20b"}.fa-map{--fa:"\f279"}.fa-rocket{--fa:"\f135"}.fa-photo-film,.fa-photo-video{--fa:"\f87c"}.fa-folder-minus{--fa:"\f65d"}.fa-hexagon-nodes-bolt{--fa:"\e69a"}.fa-store{--fa:"\f54e"}.fa-arrow-trend-up{--fa:"\e098"}.fa-plug-circle-minus{--fa:"\e55e"}.fa-sign,.fa-sign-hanging{--fa:"\f4d9"}.fa-bezier-curve{--fa:"\f55b"}.fa-bell-slash{--fa:"\f1f6"}.fa-tablet,.fa-tablet-android{--fa:"\f3fb"}.fa-school-flag{--fa:"\e56e"}.fa-fill{--fa:"\f575"}.fa-angle-up{--fa:"\f106"}.fa-drumstick-bite{--fa:"\f6d7"}.fa-holly-berry{--fa:"\f7aa"}.fa-chevron-left{--fa:"\f053"}.fa-bacteria{--fa:"\e059"}.fa-hand-lizard{--fa:"\f258"}.fa-notdef{--fa:"\e1fe"}.fa-disease{--fa:"\f7fa"}.fa-briefcase-medical{--fa:"\f469"}.fa-genderless{--fa:"\f22d"}.fa-chevron-right{--fa:"\f054"}.fa-retweet{--fa:"\f079"}.fa-car-alt,.fa-car-rear{--fa:"\f5de"}.fa-pump-soap{--fa:"\e06b"}.fa-video-slash{--fa:"\f4e2"}.fa-battery-2,.fa-battery-quarter{--fa:"\f243"}.fa-radio{--fa:"\f8d7"}.fa-baby-carriage,.fa-carriage-baby{--fa:"\f77d"}.fa-traffic-light{--fa:"\f637"}.fa-thermometer{--fa:"\f491"}.fa-vr-cardboard{--fa:"\f729"}.fa-hand-middle-finger{--fa:"\f806"}.fa-percent,.fa-percentage{--fa:"\25"}.fa-truck-moving{--fa:"\f4df"}.fa-glass-water-droplet{--fa:"\e4f5"}.fa-display{--fa:"\e163"}.fa-face-smile,.fa-smile{--fa:"\f118"}.fa-thumb-tack,.fa-thumbtack{--fa:"\f08d"}.fa-trophy{--fa:"\f091"}.fa-person-praying,.fa-pray{--fa:"\f683"}.fa-hammer{--fa:"\f6e3"}.fa-hand-peace{--fa:"\f25b"}.fa-rotate,.fa-sync-alt{--fa:"\f2f1"}.fa-spinner{--fa:"\f110"}.fa-robot{--fa:"\f544"}.fa-peace{--fa:"\f67c"}.fa-cogs,.fa-gears{--fa:"\f085"}.fa-warehouse{--fa:"\f494"}.fa-arrow-up-right-dots{--fa:"\e4b7"}.fa-splotch{--fa:"\f5bc"}.fa-face-grin-hearts,.fa-grin-hearts{--fa:"\f584"}.fa-dice-four{--fa:"\f524"}.fa-sim-card{--fa:"\f7c4"}.fa-transgender,.fa-transgender-alt{--fa:"\f225"}.fa-mercury{--fa:"\f223"}.fa-arrow-turn-down,.fa-level-down{--fa:"\f149"}.fa-person-falling-burst{--fa:"\e547"}.fa-award{--fa:"\f559"}.fa-ticket-alt,.fa-ticket-simple{--fa:"\f3ff"}.fa-building{--fa:"\f1ad"}.fa-angle-double-left,.fa-angles-left{--fa:"\f100"}.fa-qrcode{--fa:"\f029"}.fa-clock-rotate-left,.fa-history{--fa:"\f1da"}.fa-face-grin-beam-sweat,.fa-grin-beam-sweat{--fa:"\f583"}.fa-arrow-right-from-file,.fa-file-export{--fa:"\f56e"}.fa-shield,.fa-shield-blank{--fa:"\f132"}.fa-arrow-up-short-wide,.fa-sort-amount-up-alt{--fa:"\f885"}.fa-comment-nodes{--fa:"\e696"}.fa-house-medical{--fa:"\e3b2"}.fa-golf-ball,.fa-golf-ball-tee{--fa:"\f450"}.fa-chevron-circle-left,.fa-circle-chevron-left{--fa:"\f137"}.fa-house-chimney-window{--fa:"\e00d"}.fa-pen-nib{--fa:"\f5ad"}.fa-tent-arrow-turn-left{--fa:"\e580"}.fa-tents{--fa:"\e582"}.fa-magic,.fa-wand-magic{--fa:"\f0d0"}.fa-dog{--fa:"\f6d3"}.fa-carrot{--fa:"\f787"}.fa-moon{--fa:"\f186"}.fa-wine-glass-alt,.fa-wine-glass-empty{--fa:"\f5ce"}.fa-cheese{--fa:"\f7ef"}.fa-yin-yang{--fa:"\f6ad"}.fa-music{--fa:"\f001"}.fa-code-commit{--fa:"\f386"}.fa-temperature-low{--fa:"\f76b"}.fa-biking,.fa-person-biking{--fa:"\f84a"}.fa-broom{--fa:"\f51a"}.fa-shield-heart{--fa:"\e574"}.fa-gopuram{--fa:"\f664"}.fa-earth-oceania,.fa-globe-oceania{--fa:"\e47b"}.fa-square-xmark,.fa-times-square,.fa-xmark-square{--fa:"\f2d3"}.fa-hashtag{--fa:"\23"}.fa-expand-alt,.fa-up-right-and-down-left-from-center{--fa:"\f424"}.fa-oil-can{--fa:"\f613"}.fa-t{--fa:"\54"}.fa-hippo{--fa:"\f6ed"}.fa-chart-column{--fa:"\e0e3"}.fa-infinity{--fa:"\f534"}.fa-vial-circle-check{--fa:"\e596"}.fa-person-arrow-down-to-line{--fa:"\e538"}.fa-voicemail{--fa:"\f897"}.fa-fan{--fa:"\f863"}.fa-person-walking-luggage{--fa:"\e554"}.fa-arrows-alt-v,.fa-up-down{--fa:"\f338"}.fa-cloud-moon-rain{--fa:"\f73c"}.fa-calendar{--fa:"\f133"}.fa-trailer{--fa:"\e041"}.fa-bahai,.fa-haykal{--fa:"\f666"}.fa-sd-card{--fa:"\f7c2"}.fa-dragon{--fa:"\f6d5"}.fa-shoe-prints{--fa:"\f54b"}.fa-circle-plus,.fa-plus-circle{--fa:"\f055"}.fa-face-grin-tongue-wink,.fa-grin-tongue-wink{--fa:"\f58b"}.fa-hand-holding{--fa:"\f4bd"}.fa-plug-circle-exclamation{--fa:"\e55d"}.fa-chain-broken,.fa-chain-slash,.fa-link-slash,.fa-unlink{--fa:"\f127"}.fa-clone{--fa:"\f24d"}.fa-person-walking-arrow-loop-left{--fa:"\e551"}.fa-arrow-up-z-a,.fa-sort-alpha-up-alt{--fa:"\f882"}.fa-fire-alt,.fa-fire-flame-curved{--fa:"\f7e4"}.fa-tornado{--fa:"\f76f"}.fa-file-circle-plus{--fa:"\e494"}.fa-book-quran,.fa-quran{--fa:"\f687"}.fa-anchor{--fa:"\f13d"}.fa-border-all{--fa:"\f84c"}.fa-angry,.fa-face-angry{--fa:"\f556"}.fa-cookie-bite{--fa:"\f564"}.fa-arrow-trend-down{--fa:"\e097"}.fa-feed,.fa-rss{--fa:"\f09e"}.fa-draw-polygon{--fa:"\f5ee"}.fa-balance-scale,.fa-scale-balanced{--fa:"\f24e"}.fa-gauge-simple-high,.fa-tachometer,.fa-tachometer-fast{--fa:"\f62a"}.fa-shower{--fa:"\f2cc"}.fa-desktop,.fa-desktop-alt{--fa:"\f390"}.fa-m{--fa:"\4d"}.fa-table-list,.fa-th-list{--fa:"\f00b"}.fa-comment-sms,.fa-sms{--fa:"\f7cd"}.fa-book{--fa:"\f02d"}.fa-user-plus{--fa:"\f234"}.fa-check{--fa:"\f00c"}.fa-battery-4,.fa-battery-three-quarters{--fa:"\f241"}.fa-house-circle-check{--fa:"\e509"}.fa-angle-left{--fa:"\f104"}.fa-diagram-successor{--fa:"\e47a"}.fa-truck-arrow-right{--fa:"\e58b"}.fa-arrows-split-up-and-left{--fa:"\e4bc"}.fa-fist-raised,.fa-hand-fist{--fa:"\f6de"}.fa-cloud-moon{--fa:"\f6c3"}.fa-briefcase{--fa:"\f0b1"}.fa-person-falling{--fa:"\e546"}.fa-image-portrait,.fa-portrait{--fa:"\f3e0"}.fa-user-tag{--fa:"\f507"}.fa-rug{--fa:"\e569"}.fa-earth-europe,.fa-globe-europe{--fa:"\f7a2"}.fa-cart-flatbed-suitcase,.fa-luggage-cart{--fa:"\f59d"}.fa-rectangle-times,.fa-rectangle-xmark,.fa-times-rectangle,.fa-window-close{--fa:"\f410"}.fa-baht-sign{--fa:"\e0ac"}.fa-book-open{--fa:"\f518"}.fa-book-journal-whills,.fa-journal-whills{--fa:"\f66a"}.fa-handcuffs{--fa:"\e4f8"}.fa-exclamation-triangle,.fa-triangle-exclamation,.fa-warning{--fa:"\f071"}.fa-database{--fa:"\f1c0"}.fa-mail-forward,.fa-share{--fa:"\f064"}.fa-bottle-droplet{--fa:"\e4c4"}.fa-mask-face{--fa:"\e1d7"}.fa-hill-rockslide{--fa:"\e508"}.fa-exchange-alt,.fa-right-left{--fa:"\f362"}.fa-paper-plane{--fa:"\f1d8"}.fa-road-circle-exclamation{--fa:"\e565"}.fa-dungeon{--fa:"\f6d9"}.fa-align-right{--fa:"\f038"}.fa-money-bill-1-wave,.fa-money-bill-wave-alt{--fa:"\f53b"}.fa-life-ring{--fa:"\f1cd"}.fa-hands,.fa-sign-language,.fa-signing{--fa:"\f2a7"}.fa-calendar-day{--fa:"\f783"}.fa-ladder-water,.fa-swimming-pool,.fa-water-ladder{--fa:"\f5c5"}.fa-arrows-up-down,.fa-arrows-v{--fa:"\f07d"}.fa-face-grimace,.fa-grimace{--fa:"\f57f"}.fa-wheelchair-alt,.fa-wheelchair-move{--fa:"\e2ce"}.fa-level-down-alt,.fa-turn-down{--fa:"\f3be"}.fa-person-walking-arrow-right{--fa:"\e552"}.fa-envelope-square,.fa-square-envelope{--fa:"\f199"}.fa-dice{--fa:"\f522"}.fa-bowling-ball{--fa:"\f436"}.fa-brain{--fa:"\f5dc"}.fa-band-aid,.fa-bandage{--fa:"\f462"}.fa-calendar-minus{--fa:"\f272"}.fa-circle-xmark,.fa-times-circle,.fa-xmark-circle{--fa:"\f057"}.fa-gifts{--fa:"\f79c"}.fa-hotel{--fa:"\f594"}.fa-earth-asia,.fa-globe-asia{--fa:"\f57e"}.fa-id-card-alt,.fa-id-card-clip{--fa:"\f47f"}.fa-magnifying-glass-plus,.fa-search-plus{--fa:"\f00e"}.fa-thumbs-up{--fa:"\f164"}.fa-user-clock{--fa:"\f4fd"}.fa-allergies,.fa-hand-dots{--fa:"\f461"}.fa-file-invoice{--fa:"\f570"}.fa-window-minimize{--fa:"\f2d1"}.fa-coffee,.fa-mug-saucer{--fa:"\f0f4"}.fa-brush{--fa:"\f55d"}.fa-file-half-dashed{--fa:"\e698"}.fa-mask{--fa:"\f6fa"}.fa-magnifying-glass-minus,.fa-search-minus{--fa:"\f010"}.fa-ruler-vertical{--fa:"\f548"}.fa-user-alt,.fa-user-large{--fa:"\f406"}.fa-train-tram{--fa:"\e5b4"}.fa-user-nurse{--fa:"\f82f"}.fa-syringe{--fa:"\f48e"}.fa-cloud-sun{--fa:"\f6c4"}.fa-stopwatch-20{--fa:"\e06f"}.fa-square-full{--fa:"\f45c"}.fa-magnet{--fa:"\f076"}.fa-jar{--fa:"\e516"}.fa-note-sticky,.fa-sticky-note{--fa:"\f249"}.fa-bug-slash{--fa:"\e490"}.fa-arrow-up-from-water-pump{--fa:"\e4b6"}.fa-bone{--fa:"\f5d7"}.fa-table-cells-row-unlock{--fa:"\e691"}.fa-user-injured{--fa:"\f728"}.fa-face-sad-tear,.fa-sad-tear{--fa:"\f5b4"}.fa-plane{--fa:"\f072"}.fa-tent-arrows-down{--fa:"\e581"}.fa-exclamation{--fa:"\21"}.fa-arrows-spin{--fa:"\e4bb"}.fa-print{--fa:"\f02f"}.fa-try,.fa-turkish-lira,.fa-turkish-lira-sign{--fa:"\e2bb"}.fa-dollar,.fa-dollar-sign,.fa-usd{--fa:"\24"}.fa-x{--fa:"\58"}.fa-magnifying-glass-dollar,.fa-search-dollar{--fa:"\f688"}.fa-users-cog,.fa-users-gear{--fa:"\f509"}.fa-person-military-pointing{--fa:"\e54a"}.fa-bank,.fa-building-columns,.fa-institution,.fa-museum,.fa-university{--fa:"\f19c"}.fa-umbrella{--fa:"\f0e9"}.fa-trowel{--fa:"\e589"}.fa-d{--fa:"\44"}.fa-stapler{--fa:"\e5af"}.fa-masks-theater,.fa-theater-masks{--fa:"\f630"}.fa-kip-sign{--fa:"\e1c4"}.fa-hand-point-left{--fa:"\f0a5"}.fa-handshake-alt,.fa-handshake-simple{--fa:"\f4c6"}.fa-fighter-jet,.fa-jet-fighter{--fa:"\f0fb"}.fa-share-alt-square,.fa-square-share-nodes{--fa:"\f1e1"}.fa-barcode{--fa:"\f02a"}.fa-plus-minus{--fa:"\e43c"}.fa-video,.fa-video-camera{--fa:"\f03d"}.fa-graduation-cap,.fa-mortar-board{--fa:"\f19d"}.fa-hand-holding-medical{--fa:"\e05c"}.fa-person-circle-check{--fa:"\e53e"}.fa-level-up-alt,.fa-turn-up{--fa:"\f3bf"}
.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}/**
 * Like Button toolbar button, loading text & container styles
 */

/* Master container */
#jp-post-flair {
	padding-top: 0.5em;
}

/* Overall Sharedaddy block title */
div.sharedaddy,
#content div.sharedaddy,
#main div.sharedaddy {
	clear: both;
}

div.sharedaddy h3.sd-title {
	margin: 0 0 1em 0;
	display: inline-block;
	line-height: 1.2;
	font-size: 9pt;
	font-weight: 700;
}

div.sharedaddy h3.sd-title::before {
	content: "";
	display: block;
	width: 100%;
	min-width: 30px;
	border-top: 1px solid #dcdcde;
	margin-bottom: 1em;
}


/* Toolbar */
div.jetpack-likes-widget-wrapper {
	width: 100%;
	min-height: 50px;	/* Previous height, 60px */
	position: relative; /* Need to abs position placeholder and iframe so there isn't a jarring jump */
}

div.jetpack-likes-widget-wrapper .sd-link-color {
	font-size: 12px;
}

div.jetpack-comment-likes-widget-wrapper {
	width: 100%;
	position: relative;
	min-height: 31px;
}

div.jetpack-comment-likes-widget-wrapper iframe {
	margin-bottom: 0;
}

#likes-other-gravatars {
	display: none;
	position: absolute;
	padding: 9px 12px 10px 12px;
	background-color: #fff;
	border: solid 1px #dcdcde;
	border-radius: 4px;
	box-shadow: none;
	min-width: 220px;
	max-height: 240px;
	height: auto;
	overflow: auto;
	z-index: 1000;
}

#likes-other-gravatars * {
	line-height: normal;
}

#likes-other-gravatars .likes-text {
	color: #101517;
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 8px;
}

#likes-other-gravatars ul,
#likes-other-gravatars li {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style-type: none;
}

#likes-other-gravatars li::before {
	content: "";
}

#likes-other-gravatars ul.wpl-avatars {
	overflow: auto;
	display: block;
	max-height: 190px;
}

#likes-other-gravatars ul.wpl-avatars li {
	width: 196px;
	height: 28px;
	float: none;
	margin: 0 0 4px 0;
}

#likes-other-gravatars ul.wpl-avatars li a {
	margin: 0 2px 0 0;
	border-bottom: none !important;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

#likes-other-gravatars ul.wpl-avatars li a span {
	font-size: 12px;
	color: #2c3338;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#likes-other-gravatars ul.wpl-avatars li a img {
	background: none;
	border: none;
	border-radius: 50%;
	margin: 0 !important;
	padding: 1px !important;
	position: static;
	box-sizing: border-box;
}

div.sd-box {
	border-top: 1px solid #dcdcde;
	border-top: 1px solid rgba(0, 0, 0, 0.13);
}


.jetpack-likes-widget-unloaded .likes-widget-placeholder,
.jetpack-likes-widget-loading .likes-widget-placeholder,
.jetpack-likes-widget-loaded iframe {
	display: block;
}

.jetpack-likes-widget-loaded .likes-widget-placeholder,
.jetpack-likes-widget-unloaded iframe,
.jetpack-likes-widget-loading iframe {
	display: none;
}

.entry-content .post-likes-widget,
.post-likes-widget,
.comment-likes-widget {
	margin: 0;
	border-width: 0;
}

/* Loading text */
.post-likes-widget-placeholder,
.comment-likes-widget-placeholder {
	margin: 0;
	border-width: 0;
	position: relative;
}

.comment-likes-widget-placeholder {
	height: 18px;
	position: absolute;
	display: flex;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.comment-likes-widget-placeholder::before {
	color: #2ea2cc;
	width: 16px;
	height: 16px;
	content: "";
	display: inline-block;
	position: relative;
	top: 3px;
	padding-right: 5px;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	/* stylelint-disable-next-line function-url-quotes -- quotes are required here. Bug report: https://github.com/stylelint/stylelint/issues/8544 */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='0' fill='none' width='24' height='24'/%3E%3Cg%3E%3Cpath fill='%232EA2CC' d='M12 2l2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/g%3E%3C/svg%3E");
}

.post-likes-widget-placeholder .button {
	display: none;	/* Let's not show a dummy like button, let's just make a great button experience once it's loaded */
}

.post-likes-widget-placeholder .loading,
.comment-likes-widget-placeholder .loading {
	color: #999;
	font-size: 12px;
}

.comment-likes-widget-placeholder .loading {
	padding-left: 5px;
	margin-top: 4px;
	align-self: center;
	color: #4e4e4e;
}

/* Like Special cases (display on it's own) */
div.sharedaddy.sd-like-enabled .sd-like h3 {
	display: none;
}

div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
	width: 100%;
	float: none;
	position: absolute; /* Need to abs position placeholder and iframe so there isn't a jarring jump */
	top: 0;
}

.comment-likes-widget {
	width: 100%;
}


/* Make ratings block. @todo: remove inline style so !important is not needed */
.pd-rating,
.cs-rating {
	display: block !important;
}


/* Hide G+ title */
.sd-gplus .sd-title {
	display: none;
}

@media print {

	.jetpack-likes-widget-wrapper {
		display: none;
	}
}
