
#cookie-notice {
	position: fixed;
	min-width: 100%;
	height: auto;
	z-index: 100000;
	font-size: 13px;
	letter-spacing: 0;
	line-height: 20px;
	left: 0;
	text-align: center;
	font-weight: normal;
	font-family: -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue", sans-serif;
}

#cookie-notice, #cookie-notice * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#cookie-notice.cn-animated {
	-webkit-animation-duration: .5s !important;
	animation-duration: .5s !important;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

#cookie-notice.cn-animated.cn-effect-none {
	-webkit-animation-duration: .001s !important;
	animation-duration: .001s !important;
}

#cookie-notice .cookie-notice-container {
	display: block;
}

#cookie-notice.cookie-notice-hidden .cookie-notice-container {
	display: none;
}

#cookie-notice .cookie-revoke-container {
	display: block;
}

#cookie-notice.cookie-revoke-hidden .cookie-revoke-container {
	display: none;
}

.cn-position-top {
	top: 0;
}

.cn-position-bottom {
	bottom: 0;
}

.cookie-notice-container {
	padding: 15px 30px;
	text-align: center;
	width: 100%;
	z-index: 2;
}

.cookie-revoke-container {
	padding: 15px 30px;
	width: 100%;
	z-index: 1;
}

.cn-close-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	margin: -10px 0 0 0;
	width: 15px;
	height: 15px;
	opacity: .5;
	padding: 10px;
	border: none;
	outline: none;
	background: none;
	box-shadow: none;
	cursor: pointer;
}

.cn-close-icon:hover {
	opacity: 1;
}

.cn-close-icon:before, .cn-close-icon:after {
	position: absolute;
	content: " ";
	height: 15px;
	width: 2px;
	top: 3px;
	background-color: rgba(128, 128, 128, 1);
}

.cn-close-icon:before {
	transform: rotate(45deg);
}

.cn-close-icon:after {
	transform: rotate(-45deg);
}

#cookie-notice .cn-revoke-cookie {
	margin: 0;
}

#cookie-notice .cn-button {
	margin: 0 0 0 10px;
	display: inline-block;
}

#cookie-notice .cn-button:not(.cn-button-custom) {
	font-family: -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue", sans-serif;
	font-weight: normal;
	font-size: 13px;
	letter-spacing: .25px;
	line-height: 20px;
	line-height: 1;
	margin: 0 0 0 10px;
	text-align: center;
	text-transform: none;
	display: inline-block;
	cursor: pointer;
	touch-action: manipulation;
	white-space: nowrap;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-decoration: none;
	padding: 8.5px 10px;
	color: inherit;
}

.cn-text-container {
	margin: 0 0 6px 0;
}

.cn-text-container, .cn-buttons-container {
	display: inline-block;
}

#cookie-notice.cookie-notice-visible.cn-effect-none, #cookie-notice.cookie-revoke-visible.cn-effect-none {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

#cookie-notice.cn-effect-none {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

#cookie-notice.cookie-notice-visible.cn-effect-fade, #cookie-notice.cookie-revoke-visible.cn-effect-fade {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

#cookie-notice.cn-effect-fade {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

#cookie-notice.cookie-notice-visible.cn-effect-slide, #cookie-notice.cookie-revoke-visible.cn-effect-slide {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

#cookie-notice.cn-effect-slide {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

#cookie-notice.cookie-notice-visible.cn-position-top.cn-effect-slide, #cookie-notice.cookie-revoke-visible.cn-position-top.cn-effect-slide {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

#cookie-notice.cn-position-top.cn-effect-slide {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

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

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

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

@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@media all and (max-width:900px) {
	.cookie-notice-container #cn-notice-text {
		display: block;
	}
	
	.cookie-notice-container #cn-notice-buttons {
		display: block;
	}
	
	#cookie-notice .cn-button {
		margin: 0 5px 5px 5px;
	}
}

@media all and (max-width:480px) {
	.cookie-notice-container, .cookie-revoke-container {
		padding: 15px 25px;
	}
}

/*! Swipebox v1.5.2 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
	overflow: hidden !important;
}

#swipebox-overlay img {
	border: none !important;
}

#swipebox-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999 !important;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.admin-bar #swipebox-overlay {
	top: 32px;
}

.admin-bar #swipebox-container {
	bottom: 32px;
}

#swipebox-container {
	position: relative;
	width: 100%;
	height: 100%;
}

#swipebox-slider {
	-webkit-transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	white-space: nowrap;
	position: absolute;
	display: none;
	cursor: pointer;
}

#swipebox-slider .slide {
	height: 100%;
	width: 100%;
	line-height: 1px;
	text-align: center;
	display: inline-block;
}

#swipebox-slider .slide:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}

#swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container, #swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}

#swipebox-slider .slide .swipebox-video-container {
	background: none;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 5%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

#swipebox-slider .slide-loading {
	background: url("https://cdn-ficcf.nitrocdn.com/MnYgZJIHeBTKsDjcdVBEgDPdPNDYoyHC/assets/images/optimized/rev-638ba71/gfoutdoorfitness.com/wp-content/plugins/responsive-lightbox/assets/swipebox/img/loader.gif") no-repeat center center;
}

#swipebox-slider .slide-loading.nitro-lazy {
	background: none !important;
}

#swipebox-bottom-bar, #swipebox-top-bar {
	-webkit-transition: .5s;
	transition: .5s;
	position: absolute;
	left: 0;
	z-index: 999;
	height: 50px;
	width: 100%;
}

#swipebox-bottom-bar {
	bottom: -50px;
}

#swipebox-bottom-bar.visible-bars {
	-webkit-transform: translate3d(0, -50px, 0);
	transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
	top: -50px;
}

#swipebox-top-bar.visible-bars {
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
}

#swipebox-title {
	display: block;
	width: 100%;
	text-align: center;
}

#swipebox-prev, #swipebox-next, #swipebox-close {
	background-image: url("https://cdn-ficcf.nitrocdn.com/MnYgZJIHeBTKsDjcdVBEgDPdPNDYoyHC/assets/images/optimized/rev-638ba71/gfoutdoorfitness.com/wp-content/plugins/responsive-lightbox/assets/swipebox/img/icons.png");
	background-repeat: no-repeat;
	border: none !important;
	text-decoration: none !important;
	cursor: pointer;
	width: 50px;
	height: 50px;
	top: 0;
}

#swipebox-prev.nitro-lazy, #swipebox-next.nitro-lazy, #swipebox-close.nitro-lazy {
	background-image: none !important;
}

#swipebox-arrows {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 50px;
}

#swipebox-prev {
	background-position: -32px 13px;
	float: left;
}

#swipebox-next {
	background-position: -78px 13px;
	float: right;
}

#swipebox-close {
	top: 0;
	right: 0;
	position: absolute;
	z-index: 9999;
	background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
	display: none;
}

#swipebox-prev.disabled, #swipebox-next.disabled {
	opacity: .3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
	-webkit-animation: rightSpring .3s;
	animation: rightSpring .3s;
}

.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
	-webkit-animation: leftSpring .3s;
	animation: leftSpring .3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	content: " ";
	position: absolute;
	z-index: 999;
	top: 0;
	height: 100%;
	width: 20px;
	opacity: 0;
}

.swipebox-touch #swipebox-container:before {
	left: 0;
	-webkit-box-shadow: inset 10px 0 10px -8px #656565;
	box-shadow: inset 10px 0 10px -8px #656565;
}

.swipebox-touch #swipebox-container:after {
	right: 0;
	-webkit-box-shadow: inset -10px 0 10px -8px #656565;
	box-shadow: inset -10px 0 10px -8px #656565;
}

.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
	opacity: 1;
}

.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
	opacity: 1;
}

@-webkit-keyframes rightSpring {
	0% {
		left: 0;
	}
	
	50% {
		left: -30px;
	}
	
	100% {
		left: 0;
	}
}

@keyframes rightSpring {
	0% {
		left: 0;
	}
	
	50% {
		left: -30px;
	}
	
	100% {
		left: 0;
	}
}

@-webkit-keyframes leftSpring {
	0% {
		left: 0;
	}
	
	50% {
		left: 30px;
	}
	
	100% {
		left: 0;
	}
}

@keyframes leftSpring {
	0% {
		left: 0;
	}
	
	50% {
		left: 30px;
	}
	
	100% {
		left: 0;
	}
}

@media screen and (min-width:800px) {
	#swipebox-close {
		right: 10px;
	}
	
	#swipebox-arrows {
		width: 92%;
		max-width: 800px;
	}
}

#swipebox-overlay {
	background: #0d0d0d;
}

#swipebox-bottom-bar, #swipebox-top-bar {
	text-shadow: 1px 1px 1px black;
	background: #000;
	opacity: .95;
}

#swipebox-top-bar {
	color: white !important;
	font-size: 15px;
	line-height: 43px;
	font-family: Helvetica, Arial, sans-serif;
}

body .wp-block-uagb-container.uagb-position__sticky {
	transition-property: top, bottom;
	transition-duration: 250ms;
	transition-timing-function: ease;
}

body .wp-block-uagb-container.uagb-position__sticky--stuck {
	position: fixed;
	margin: 0 !important;
}

body .wp-block-uagb-container.uagb-position__sticky--restricted {
	position: absolute;
	margin: 0 !important;
}

.wp-block-uagb-image {
	display: flex;
}

.wp-block-uagb-image__figure {
	position: relative;
	display: flex;
	flex-direction: column;
	max-width: 100%;
	height: auto;
	margin: 0;
}

.wp-block-uagb-image__figure img {
	height: auto;
	display: flex;
	max-width: 100%;
	transition: box-shadow .2s ease;
}

.wp-block-uagb-image__figure>a {
	display: inline-block;
}

.wp-block-uagb-image__figure figcaption {
	text-align: center;
	margin-top: .5em;
	margin-bottom: 1em;
}

.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions {
	align-self: center;
}

.wp-block-uagb-image--align-left {
	text-align: left;
}

.wp-block-uagb-image--align-right {
	text-align: right;
}

.wp-block-uagb-image--align-center {
	text-align: center;
}

.wp-block-uagb-image--align-full .wp-block-uagb-image__figure {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
	height: auto;
}

.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img {
	height: auto;
	width: 100% !important;
}

.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img {
	height: auto;
	width: 100%;
}

.wp-block-uagb-image--layout-overlay__color-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: .2;
	background: rgba(0, 0, 0, .5);
	transition: opacity .35s ease-in-out;
}

.wp-block-uagb-image--layout-overlay-link {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.wp-block-uagb-image--layout-overlay__inner {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 15px;
	top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-color: #fff;
	transition: .35s ease-in-out;
}

.wp-block-uagb-image--layout-overlay__inner.top-left, .wp-block-uagb-image--layout-overlay__inner.top-center, .wp-block-uagb-image--layout-overlay__inner.top-right {
	justify-content: flex-start;
}

.wp-block-uagb-image--layout-overlay__inner.bottom-left, .wp-block-uagb-image--layout-overlay__inner.bottom-center, .wp-block-uagb-image--layout-overlay__inner.bottom-right {
	justify-content: flex-end;
}

.wp-block-uagb-image--layout-overlay__inner.top-left, .wp-block-uagb-image--layout-overlay__inner.center-left, .wp-block-uagb-image--layout-overlay__inner.bottom-left {
	align-items: flex-start;
}

.wp-block-uagb-image--layout-overlay__inner.top-right, .wp-block-uagb-image--layout-overlay__inner.center-right, .wp-block-uagb-image--layout-overlay__inner.bottom-right {
	align-items: flex-end;
}

.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	color: #fff;
	transition: transform .35s, opacity .35s ease-in-out;
	transform: translate3d(0, 24px, 0);
	margin: 0;
	line-height: 1em;
}

.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	border-top-style: solid;
	margin-bottom: 10px;
	opacity: 0;
	transition: transform .4s, opacity .4s ease-in-out;
	transform: translate3d(0, 30px, 0);
}

.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
	overflow: visible;
	color: #fff;
	transition: transform .45s, opacity .45s ease-in-out;
	transform: translate3d(0, 35px, 0);
}

.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading, .wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator, .wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img, .wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper {
	transform: scale(1);
	transition: transform .35s ease-in-out;
}

.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img, .wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	transform: scale(1.05);
}

.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img, .wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper {
	width: calc(100% + 40px) !important;
	max-width: none !important;
	transform: translate3d(-40px, 0, 0);
	transition: transform .35s ease-in-out;
}

.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img, .wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	transform: translate3d(0, 0, 0);
}

.wp-block-uagb-image--effect-grayscale img {
	filter: grayscale(0%);
	transition: .35s ease-in-out;
}

.wp-block-uagb-image--effect-grayscale:hover img {
	filter: grayscale(100%);
}

.wp-block-uagb-image--effect-blur img {
	filter: blur(0);
	transition: .35s ease-in-out;
}

.wp-block-uagb-image--effect-blur:hover img {
	filter: blur(3px);
}

.wp-block-uagb-container {
	display: flex;
	position: relative;
	box-sizing: border-box;
	transition-property: box-shadow;
	transition-duration: .2s;
	transition-timing-function: ease;
}

.wp-block-uagb-container .spectra-container-link-overlay {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

.wp-block-uagb-container.uagb-is-root-container {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap {
	display: flex;
	position: relative;
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
}

.wp-block-uagb-container .wp-block-uagb-blockquote, .wp-block-uagb-container .wp-block-spectra-pro-login, .wp-block-uagb-container .wp-block-spectra-pro-register {
	margin: unset;
}

.wp-block-uagb-container .uagb-container__video-wrap {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	overflow: hidden;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
}

.wp-block-uagb-container .uagb-container__video-wrap video {
	max-width: 100%;
	width: 100%;
	height: 100%;
	margin: 0;
	line-height: 1;
	border: none;
	display: inline-block;
	vertical-align: baseline;
	-o-object-fit: cover;
	object-fit: cover;
	background-size: cover;
}

.wp-block-uagb-container.uagb-layout-grid {
	display: grid;
	width: 100%;
}

.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap {
	display: inherit;
	width: inherit;
}

.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container {
	max-width: unset !important;
	width: unset !important;
}

.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container {
	max-width: unset !important;
	width: unset !important;
}

.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container {
	max-width: unset !important;
	width: unset !important;
}

.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap {
	display: inherit;
	position: relative;
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
}

body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box), body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap, body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap) {
	min-width: unset !important;
	width: 100%;
	position: relative;
}

body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul, body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol, body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul, body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol {
	max-width: -webkit-fill-available;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-left: 20px;
}

.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide {
	margin-left: auto;
	margin-right: auto;
}

.uagb-container__shape {
	overflow: hidden;
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 0;
	direction: ltr;
}

.uagb-container__shape-top {
	top: -3px;
}

.uagb-container__shape-bottom {
	bottom: -3px;
}

.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom, .uagb-container__shape.uagb-container__invert.uagb-container__shape-top {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.uagb-container__shape.uagb-container__shape-flip svg {
	transform: translateX(-50%) rotateY(180deg);
}

.uagb-container__shape svg {
	display: block;
	width: -webkit-calc(100% + 1.3px);
	width: calc(100% + 1.3px);
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.uagb-container__shape .uagb-container__shape-fill {
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.uagb-container__shape.uagb-container__shape-above-content {
	z-index: 9;
	pointer-events: none;
}

.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

@media only screen and (max-width: 767px) {
	.wp-block-uagb-container .wp-block-uagb-advanced-heading {
		width: -webkit-fill-available;
	}
}

.wp-block-uagb-image--align-none {
	justify-content: center;
}

.uagb-buttons__outer-wrap .uagb-buttons__wrap {
	display: inline-flex;
	width: 100%;
}

.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.ast-outline-button {
	padding: 5px 10px;
}

.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.ast-outline-button {
	padding: 12px 24px;
}

.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.ast-outline-button {
	padding: 20px 30px;
}

.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.ast-outline-button {
	padding: 30px 65px;
}

@media (max-width: 976px) {
	.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 5px 10px;
	}
	
	.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 12px 24px;
	}
	
	.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 20px 30px;
	}
	
	.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 30px 65px;
	}
}

@media (max-width: 767px) {
	.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 5px 10px;
	}
	
	.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 12px 24px;
	}
	
	.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 20px 30px;
	}
	
	.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline), .uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.ast-outline-button {
		padding: 30px 65px;
	}
}

.uagb-buttons__outer-wrap .uagb-buttons-repeater {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: box-shadow .2s ease;
}

.uagb-buttons__outer-wrap .uagb-buttons-repeater a.uagb-button__link {
	display: flex;
	justify-content: center;
}

.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon {
	font-size: inherit;
	display: flex;
	align-items: center;
}

.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon svg {
	fill: currentColor;
	width: inherit;
	height: inherit;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-default figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-5124ad0e.wp-block-uagb-image .wp-block-uagb-image__figure figcaption {
	font-style: normal;
	align-self: center;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: .2;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner {
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	font-style: normal;
	color: #fff;
	opacity: 1;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a {
	color: #fff;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.uagb-block-5124ad0e.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	opacity: 0;
}

.uagb-block-5124ad0e.wp-block-uagb-image .wp-block-uagb-image__figure img {
	object-fit: cover;
	width: 600px;
	height: 400px;
}

.uagb-block-5124ad0e.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 1;
}

.uagb-block-5124ad0e.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	opacity: 1;
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-default figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-5124ad0e.wp-block-uagb-image--layout-overlay figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.wp-block-uagb-container.uagb-block-6b580bf7 .uagb-container__shape-top svg {
	height: 62px;
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-6b580bf7 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill {
	fill: var(--ast-global-color-0);
}

.wp-block-uagb-container.uagb-block-6b580bf7 .uagb-container__shape-bottom svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-6b580bf7 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-6b580bf7 .uagb-container__video-wrap video {
	opacity: 1;
}

.wp-block-uagb-container.uagb-is-root-container .uagb-block-6b580bf7 {
	max-width: 100%;
	width: 100%;
}

.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6b580bf7 > .uagb-container-inner-blocks-wrap {
	--inner-content-custom-width: min(100%, 1200px);
	max-width: var(--inner-content-custom-width);
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 20px;
	column-gap: 20px;
}

.wp-block-uagb-container.uagb-block-6b580bf7 {
	box-shadow: 0px 0px rgba(0, 0, 0, .44);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px;
	margin-right: 0px;
	overflow: hidden;
	order: initial;
	border-top-width: 0px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-style: solid;
	border-color: var(--ast-global-color-7);
	background-color: var(--ast-global-color-5);
	row-gap: 20px;
	column-gap: 20px;
}

.uagb-block-a1aeb3be.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap {
	gap: 10px;
}

.uagb-block-a1aeb3be.uagb-buttons__outer-wrap .uagb-buttons__wrap {
	justify-content: center;
	align-items: center;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .15);
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link:hover {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .15);
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater.wp-block-button__link {
	border-top-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-color: #333;
	border-style: solid;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater.wp-block-button__link:hover {
	border-color: #333;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater.wp-block-button__link:focus {
	border-color: #333;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater {
	border-top-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-color: #333;
	border-style: solid;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater:hover {
	border-color: #333;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater .uagb-button__icon > svg {
	width: 15px;
	height: 15px;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater .uagb-button__icon-position-after {
	margin-left: 8px;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater .uagb-button__icon-position-before {
	margin-right: 8px;
}

.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-button__link {
	text-transform: normal;
	text-decoration: none;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-default figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-17e0de50.wp-block-uagb-image .wp-block-uagb-image__figure figcaption {
	font-style: normal;
	align-self: center;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: .2;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner {
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	font-style: normal;
	color: #fff;
	opacity: 1;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a {
	color: #fff;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.uagb-block-17e0de50.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	opacity: 0;
}

.uagb-block-17e0de50.wp-block-uagb-image .wp-block-uagb-image__figure img {
	width: 1200px;
	height: auto;
}

.uagb-block-17e0de50.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 1;
}

.uagb-block-17e0de50.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	opacity: 1;
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-default figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-17e0de50.wp-block-uagb-image--layout-overlay figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

@media only screen and (max-width: 976px) {
	.uagb-block-5124ad0e.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: 600px;
		height: auto;
	}
	
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-6b580bf7 {
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6b580bf7 > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 1024px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-block-6b580bf7 {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		margin-top: 0px !important;
		margin-bottom: 0px !important;
		margin-left: 0px;
		margin-right: 0px;
		order: initial;
		border-style: solid;
		border-color: var(--ast-global-color-7);
		background-color: var(--ast-global-color-5);
	}
	
	.uagb-block-a1aeb3be.uagb-buttons__outer-wrap .uagb-buttons__wrap {
		justify-content: center;
		align-items: center;
	}
	
	.uagb-block-a1aeb3be.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button {
		width: auto;
	}
	
	.wp-block-uagb-buttons .uagb-block-d969fbb2.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater {
		border-style: solid;
		border-color: #333;
	}
	
	.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater.wp-block-button__link {
		border-style: solid;
		border-color: #333;
	}
	
	.uagb-block-17e0de50.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: 1200px;
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.uagb-block-5124ad0e.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: 600px;
		height: auto;
	}
	
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-6b580bf7 {
		max-width: 100%;
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6b580bf7 > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 767px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
		flex-wrap: wrap;
	}
	
	.wp-block-uagb-container.uagb-block-6b580bf7 {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		margin-top: 0px !important;
		margin-bottom: 0px !important;
		margin-left: 0px;
		margin-right: 0px;
		order: initial;
		border-style: solid;
		border-color: var(--ast-global-color-7);
		background-color: var(--ast-global-color-5);
	}
	
	.uagb-block-a1aeb3be.uagb-buttons__outer-wrap .uagb-buttons__wrap {
		justify-content: center;
		align-items: center;
	}
	
	.uagb-block-a1aeb3be.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button {
		width: auto;
	}
	
	.wp-block-uagb-buttons .uagb-block-d969fbb2.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater {
		border-style: solid;
		border-color: #333;
	}
	
	.wp-block-uagb-buttons .uagb-block-d969fbb2 .uagb-buttons-repeater.wp-block-button__link {
		border-style: solid;
		border-color: #333;
	}
	
	.uagb-block-17e0de50.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: 1200px;
		height: auto;
	}
}

.uag-blocks-common-selector {
	z-index: var(--z-index-desktop) !important;
}

@media (max-width: 976px) {
	.uag-blocks-common-selector {
		z-index: var(--z-index-tablet) !important;
	}
}

@media (max-width: 767px) {
	.uag-blocks-common-selector {
		z-index: var(--z-index-mobile) !important;
	}
}

.wp-block-uagb-faq {
	width: 100%;
}

.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button {
	cursor: pointer;
}

.wp-block-uagb-faq .uagb-faq-content {
	margin-bottom: 0;
}

.wp-block-uagb-faq .uagb-faq-content p {
	margin: auto;
}

.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-child__outer-wrap, .uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-item {
	height: 100%;
}

body[class*="astra"] .uagb-faq-questions {
	line-height: normal;
}

.uagb-faq-item {
	overflow: hidden;
}

.wp-block-uagb-faq-child .uagb-faq-questions-button {
	display: flex;
	align-items: center;
}

.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap {
	display: flex;
	align-items: center;
}

.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

.wp-block-uagb-faq-child .uagb-icon svg, .wp-block-uagb-faq-child .uagb-icon-active svg {
	width: 15px;
	height: 15px;
	font-size: 15px;
}

.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon-active, .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon, .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active, .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon {
	display: none;
	width: 0;
	padding: 0;
	height: 0;
	margin: 0;
}

.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon, .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active, .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon, .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active {
	display: flex;
	width: auto;
	height: auto;
}

.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon, .uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active, .uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon, .uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active {
	display: none;
}

.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap, .uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active, .uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap, .uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active {
	display: none;
}

.uagb-block-fd58e4d6 .uagb-icon svg {
	width: 22px;
	height: 22px;
	font-size: 22px;
}

.uagb-block-fd58e4d6 .uagb-icon-active svg {
	width: 22px;
	height: 22px;
	font-size: 22px;
}

.uagb-block-fd58e4d6 .uagb-faq-child__outer-wrap {
	margin-bottom: 10px;
}

.uagb-block-fd58e4d6 .uagb-faq-item {
	background-color: #eff7f4;
	border-top-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-color: #d2d2d2;
	border-style: none;
}

.uagb-block-fd58e4d6 .uagb-faq-questions-button {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-left: 10px;
}

.uagb-block-fd58e4d6 .uagb-faq-content {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-left: 30px;
}

.uagb-block-fd58e4d6 .uagb-faq-content span {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
	margin-left: 30px;
}

.uagb-block-fd58e4d6.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap {
	margin-right: 10px;
}

.uagb-block-fd58e4d6.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap {
	margin-left: 10px;
}

.uagb-block-fd58e4d6 .uagb-faq-item .uagb-faq-questions-button.uagb-faq-questions {
	flex-direction: row;
}

.uagb-block-fd58e4d6 .uagb-faq-item .uagb-faq-content {
	font-size: 20px;
	line-height: 33px;
}

.uagb-block-fd58e4d6.uagb-faq__outer-wrap {
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
}

.uagb-block-fd58e4d6 .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-content {
	display: none;
}

.uagb-block-fd58e4d6 .uagb-faq-questions-button .uagb-question {
	font-size: 24px;
	line-height: 28px;
}

@media only screen and (max-width: 976px) {
	.uagb-block-fd58e4d6.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap {
		margin-right: 10px;
	}
	
	.uagb-block-fd58e4d6.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap {
		margin-left: 10px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-questions-button {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 10px;
		padding-left: 10px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-content {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 10px;
		padding-left: 10px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-content span {
		margin-top: 10px;
		margin-bottom: 10px;
		margin-right: 10px;
		margin-left: 10px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-item {
		border-style: none;
		border-color: #d2d2d2;
	}
}

@media only screen and (max-width: 767px) {
	.uagb-block-fd58e4d6.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap {
		margin-right: 10px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-item {
		border-style: none;
		border-color: #d2d2d2;
	}
	
	.uagb-block-fd58e4d6.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap {
		margin-left: 10px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-questions-button {
		padding-top: 15px;
		padding-bottom: 15px;
		padding-right: 15px;
		padding-left: 15px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-content {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 10px;
		padding-left: 30px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-content span {
		margin-top: 10px;
		margin-bottom: 10px;
		margin-right: 10px;
		margin-left: 30px;
	}
	
	.uagb-block-fd58e4d6 .uagb-faq-item .uagb-faq-content {
		font-size: 20px;
		line-height: 36px;
	}
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape-top svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape-bottom svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__video-wrap video {
	opacity: 1;
}

.wp-block-uagb-container.uagb-is-root-container .uagb-block-af412ed9 {
	max-width: 100%;
	width: 100%;
}

.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-af412ed9 > .uagb-container-inner-blocks-wrap {
	--inner-content-custom-width: min(100%, 1200px);
	max-width: var(--inner-content-custom-width);
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	row-gap: 20px;
	column-gap: 20px;
}

.wp-block-uagb-container.uagb-block-af412ed9 {
	box-shadow: 0px 0px rgba(0, 0, 0, .44);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	overflow: visible;
	order: initial;
	border-color: inherit;
	row-gap: 20px;
	column-gap: 20px;
}

@media only screen and (max-width: 976px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-af412ed9 {
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-af412ed9 > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 1024px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-block-af412ed9 {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		order: initial;
	}
}

@media only screen and (max-width: 767px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-af412ed9 {
		max-width: 100%;
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-af412ed9 > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 767px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
		flex-wrap: wrap;
		row-gap: 24px;
		column-gap: 0px;
	}
	
	.wp-block-uagb-container.uagb-block-af412ed9 {
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		padding-right: 0px;
		row-gap: 24px;
		column-gap: 0px;
		order: initial;
	}
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape-top svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape-bottom svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-af412ed9 .uagb-container__video-wrap video {
	opacity: 1;
}

.wp-block-uagb-container.uagb-is-root-container .uagb-block-af412ed9 {
	max-width: 100%;
	width: 100%;
}

.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-af412ed9 > .uagb-container-inner-blocks-wrap {
	--inner-content-custom-width: min(100%, 1200px);
	max-width: var(--inner-content-custom-width);
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	row-gap: 20px;
	column-gap: 20px;
}

.wp-block-uagb-container.uagb-block-af412ed9 {
	box-shadow: 0px 0px rgba(0, 0, 0, .44);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	overflow: visible;
	order: initial;
	border-color: inherit;
	row-gap: 20px;
	column-gap: 20px;
}

@media only screen and (max-width: 976px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-af412ed9 {
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-af412ed9 > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 1024px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-block-af412ed9 {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		order: initial;
	}
}

@media only screen and (max-width: 767px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-af412ed9 {
		max-width: 100%;
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-af412ed9 > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 767px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
		flex-wrap: wrap;
		row-gap: 24px;
		column-gap: 0px;
	}
	
	.wp-block-uagb-container.uagb-block-af412ed9 {
		padding-top: 0px;
		padding-bottom: 15px;
		padding-left: 0px;
		padding-right: 0px;
		row-gap: 24px;
		column-gap: 0px;
		order: initial;
	}
}

.wp-block-uagb-container.uagb-block-d1f084de .uagb-container__shape-top svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-d1f084de .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-d1f084de .uagb-container__shape-bottom svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-d1f084de .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-d1f084de .uagb-container__video-wrap video {
	opacity: 1;
}

.wp-block-uagb-container.uagb-is-root-container .uagb-block-d1f084de {
	max-width: 100%;
	width: 100%;
}

.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-d1f084de > .uagb-container-inner-blocks-wrap {
	--inner-content-custom-width: min(100%, 1200px);
	max-width: var(--inner-content-custom-width);
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	row-gap: 20px;
	column-gap: 20px;
}

.wp-block-uagb-container.uagb-block-d1f084de {
	box-shadow: 0px 0px rgba(0, 0, 0, .44);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	overflow: visible;
	order: initial;
	border-color: inherit;
	row-gap: 20px;
	column-gap: 20px;
}

@media only screen and (max-width: 976px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-d1f084de {
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-d1f084de > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 1024px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-block-d1f084de {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		order: initial;
	}
}

@media only screen and (max-width: 767px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-d1f084de {
		max-width: 100%;
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-d1f084de > .uagb-container-inner-blocks-wrap {
		--inner-content-custom-width: min(100%, 767px);
		max-width: var(--inner-content-custom-width);
		width: 100%;
		flex-wrap: wrap;
	}
	
	.wp-block-uagb-container.uagb-block-d1f084de {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		order: initial;
	}
}

.wp-block-uagb-container.uagb-block-0e0f280d .uagb-container__shape-top svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-0e0f280d .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-0e0f280d .uagb-container__shape-bottom svg {
	width: calc(100% + 1.3px);
}

.wp-block-uagb-container.uagb-block-0e0f280d .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill {
	fill: rgba(51, 51, 51, 1);
}

.wp-block-uagb-container.uagb-block-0e0f280d .uagb-container__video-wrap video {
	opacity: 1;
}

.wp-block-uagb-container.uagb-is-root-container .uagb-block-0e0f280d {
	max-width: 100%;
	width: 100%;
}

.wp-block-uagb-container.uagb-block-0e0f280d {
	box-shadow: 0px 0px rgba(0, 0, 0, .44);
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 24px;
	padding-right: 12px;
	overflow: visible;
	order: initial;
	border-color: inherit;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: nowrap;
	row-gap: 20px;
	column-gap: 20px;
}

@media only screen and (max-width: 976px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-0e0f280d {
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-block-0e0f280d {
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 24px;
		padding-right: 12px;
		order: initial;
	}
}

@media only screen and (max-width: 767px) {
	.wp-block-uagb-container.uagb-is-root-container .uagb-block-0e0f280d {
		max-width: 100%;
		width: 100%;
	}
	
	.wp-block-uagb-container.uagb-block-0e0f280d {
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 24px;
		padding-right: 12px;
		order: initial;
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.wp-block-uagb-container.uagb-block-0e0f280d.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap) {
		width: auto !important;
	}
	
	.wp-block-uagb-container.uagb-block-0e0f280d.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox) {
		width: auto !important;
	}
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-default figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-c1afbca3.wp-block-uagb-image .wp-block-uagb-image__figure figcaption {
	font-style: normal;
	align-self: center;
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: .2;
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner {
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	font-style: normal;
	color: #fff;
	opacity: 1;
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a {
	color: #fff;
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.uagb-block-c1afbca3.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	opacity: 0;
}

.uagb-block-c1afbca3.wp-block-uagb-image .wp-block-uagb-image__figure img {
	width: px;
	height: auto;
}

.uagb-block-c1afbca3.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 1;
}

.uagb-block-c1afbca3.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	opacity: 1;
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-default figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-c1afbca3.wp-block-uagb-image--layout-overlay figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

@media only screen and (max-width: 976px) {
	.uagb-block-c1afbca3.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.uagb-block-c1afbca3.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-default figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-9a4c933b.wp-block-uagb-image .wp-block-uagb-image__figure figcaption {
	font-style: normal;
	align-self: center;
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: .2;
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner {
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	font-style: normal;
	color: #fff;
	opacity: 1;
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a {
	color: #fff;
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.uagb-block-9a4c933b.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	opacity: 0;
}

.uagb-block-9a4c933b.wp-block-uagb-image .wp-block-uagb-image__figure img {
	width: px;
	height: auto;
}

.uagb-block-9a4c933b.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 1;
}

.uagb-block-9a4c933b.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	opacity: 1;
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-default figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-9a4c933b.wp-block-uagb-image--layout-overlay figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

@media only screen and (max-width: 976px) {
	.uagb-block-9a4c933b.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.uagb-block-9a4c933b.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-default figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-6b2671ef.wp-block-uagb-image .wp-block-uagb-image__figure figcaption {
	font-style: normal;
	align-self: center;
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: .2;
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner {
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	font-style: normal;
	color: #fff;
	opacity: 1;
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a {
	color: #fff;
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.uagb-block-6b2671ef.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	opacity: 0;
}

.uagb-block-6b2671ef.wp-block-uagb-image .wp-block-uagb-image__figure img {
	width: px;
	height: auto;
}

.uagb-block-6b2671ef.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 1;
}

.uagb-block-6b2671ef.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	opacity: 1;
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-default figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-6b2671ef.wp-block-uagb-image--layout-overlay figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

@media only screen and (max-width: 976px) {
	.uagb-block-6b2671ef.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.uagb-block-6b2671ef.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-default figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-de801bf6.wp-block-uagb-image .wp-block-uagb-image__figure figcaption {
	font-style: normal;
	align-self: center;
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: .2;
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner {
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	font-style: normal;
	color: #fff;
	opacity: 1;
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a {
	color: #fff;
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.uagb-block-de801bf6.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	opacity: 0;
}

.uagb-block-de801bf6.wp-block-uagb-image .wp-block-uagb-image__figure img {
	width: px;
	height: auto;
}

.uagb-block-de801bf6.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 1;
}

.uagb-block-de801bf6.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	opacity: 1;
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-default figure:hover img {
	box-shadow: 0px 32px 50px -30px rgba(0, 0, 0, .44);
}

.uagb-block-de801bf6.wp-block-uagb-image--layout-overlay figure:hover img {
	box-shadow: 0px 32px 50px -30px rgba(0, 0, 0, .44);
}

@media only screen and (max-width: 976px) {
	.uagb-block-de801bf6.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.uagb-block-de801bf6.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: 500px;
		height: auto;
	}
}

.uagb-block-a5509743.wp-block-uagb-image--layout-default figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-a5509743.wp-block-uagb-image .wp-block-uagb-image__figure figcaption {
	font-style: normal;
	align-self: center;
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay figure img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: .2;
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner {
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading {
	font-style: normal;
	color: #fff;
	opacity: 1;
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a {
	color: #fff;
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 0;
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {
	opacity: 1;
}

.uagb-block-a5509743.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	width: 30%;
	border-top-width: 2px;
	border-top-color: #fff;
	opacity: 0;
}

.uagb-block-a5509743.wp-block-uagb-image .wp-block-uagb-image__figure img {
	width: px;
	height: auto;
}

.uagb-block-a5509743.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption {
	opacity: 1;
}

.uagb-block-a5509743.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator {
	opacity: 1;
}

.uagb-block-a5509743.wp-block-uagb-image--layout-default figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

.uagb-block-a5509743.wp-block-uagb-image--layout-overlay figure:hover img {
	box-shadow: 0px 0px 0 rgba(0, 0, 0, .44);
}

@media only screen and (max-width: 976px) {
	.uagb-block-a5509743.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.uagb-block-a5509743.wp-block-uagb-image .wp-block-uagb-image__figure img {
		width: px;
		height: auto;
	}
}

.ast-page-builder-template .ast-article-post {
	margin-bottom: 2.5em;
}

.ast-featured-post {
	float: none;
}

.ast-separate-container .ast-separate-posts.ast-article-post {
	margin-bottom: 2em;
}

.ast-animate-hidden {
	visibility: hidden;
	opacity: 0;
}

.ast-animate-display {
	visibility: visible;
	opacity: 1;
}

.ast-no-thumb .ast-date-meta .posted-on {
	margin-bottom: 1.5em;
}

.ast-date-meta.circle .posted-on {
	border-radius: 50%;
	overflow: hidden;
}

.has-post-thumbnail .ast-date-meta.circle .posted-on {
	margin: 1em;
}

.ast-separate-container .ast-grid-1 .blog-layout-1 {
	padding: 0;
}

.ast-separate-container .ast-grid-1 .blog-layout-2, .ast-separate-container .ast-grid-1 .blog-layout-3 {
	padding: 0;
	border-bottom: 0;
}

.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-2, .ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-3, .ast-separate-container .ast-grid-3 .ast-article-post .blog-layout-2, .ast-separate-container .ast-grid-3 .ast-article-post .blog-layout-3, .ast-separate-container .ast-grid-4 .ast-article-post .blog-layout-2, .ast-separate-container .ast-grid-4 .ast-article-post .blog-layout-3 {
	border-bottom: 0;
}

.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3 {
	padding: 2.66666em;
}

.ast-separate-container .ast-grid-2 .blog-layout-1, .ast-separate-container .ast-grid-2 .blog-layout-2, .ast-separate-container .ast-grid-2 .blog-layout-3, .ast-separate-container .ast-grid-3 .blog-layout-1, .ast-separate-container .ast-grid-3 .blog-layout-2, .ast-separate-container .ast-grid-3 .blog-layout-3, .ast-separate-container .ast-grid-4 .blog-layout-1, .ast-separate-container .ast-grid-4 .blog-layout-2, .ast-separate-container .ast-grid-4 .blog-layout-3 {
	padding: 1.5em;
}

@media (max-width:1200px) {
	.ast-separate-container .ast-grid-2 .ast-article-post:nth-child(2n+0), .ast-separate-container .ast-grid-2 .ast-article-post:nth-child(odd), .ast-separate-container .ast-grid-3 .ast-article-post:nth-child(2n+0), .ast-separate-container .ast-grid-3 .ast-article-post:nth-child(odd), .ast-separate-container .ast-grid-4 .ast-article-post:nth-child(2n+0), .ast-separate-container .ast-grid-4 .ast-article-post:nth-child(odd) {
		padding: 0;
	}
	
	.ast-separate-container .blog-layout-1, .ast-separate-container .blog-layout-2, .ast-separate-container .blog-layout-3 {
		padding: 1.5em;
	}
}

.site-content .ast-grid-2 .ast-article-post, .site-content .ast-grid-3 .ast-article-post, .site-content .ast-grid-4 .ast-article-post {
	background: 0 0;
}

.site-content .ast-grid-2 .ast-article-post .blog-layout-2, .site-content .ast-grid-2 .ast-article-post .blog-layout-3, .site-content .ast-grid-3 .ast-article-post .blog-layout-2, .site-content .ast-grid-3 .ast-article-post .blog-layout-3, .site-content .ast-grid-4 .ast-article-post .blog-layout-2, .site-content .ast-grid-4 .ast-article-post .blog-layout-3 {
	border-bottom: 0;
}

.ast-page-builder-template .ast-article-post .entry-header {
	margin: auto auto 1em auto;
	padding: 0;
}

.ast-article-post .ast-post-format-audio.ast-embeded-audio .ast-date-meta .posted-on {
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
}

hr.post-divider {
	height: 0;
	margin: 0;
}

hr.ast-single-previous-hr {
	height: 0;
	margin-top: 2em;
}

.ast-show-comments-data {
	padding: 2em 6.67em;
}

.ast-show-comments-data .ast-show-comments {
	cursor: pointer;
}

.ast-show-comments-data .ast-show-comments, .ast-show-comments-data .ast-show-comments-count {
	max-width: 640px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.ast-show-comments-data .ast-show-comments-count {
	margin-bottom: 2em;
}

.ast-pagination-circle .ast-pagination .page-numbers, .ast-pagination-square .ast-pagination .page-numbers {
	border-style: solid;
	border-width: 1px;
	line-height: 2.33333em;
}

.ast-pagination-circle .ast-pagination .page-numbers {
	border-radius: 50%;
}

.ast-pagination-circle .ast-pagination .next.page-numbers, .ast-pagination-circle .ast-pagination .prev.page-numbers {
	border-radius: 30px;
}

@media all and (max-width:768px) {
	#content:before {
		content: "";
	}
}

.ast-pagination-infinite {
	text-align: center;
	margin: 2.5em 0 0;
}

.ast-page-builder-template .ast-pagination-infinite {
	margin: 2.5em 0;
}

.infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

.no-more {
	cursor: default;
}

.ast-loader {
	display: none;
	margin: 0 auto;
	min-height: 58px;
	line-height: 58px;
	width: 70px;
	text-align: center;
}

.ast-loader>div {
	width: 18px;
	height: 18px;
	background-color: #0085ba;
	border-radius: 100%;
	display: inline-block;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.ast-loader .ast-loader-1 {
	animation-delay: -.32s;
}

.ast-loader .ast-loader-2 {
	animation-delay: -.16s;
}

@keyframes sk-bouncedelay {
	0%, 100%, 80% {
		transform: scale(0);
	}
	
	40% {
		transform: scale(1);
	}
}

.ast-blog-pagination-type-infinite .ast-pagination {
	display: none;
}

.ast-hb-account-login-wrapper .ast-hb-account-login {
	position: fixed;
	left: 50%;
	top: 50%;
	padding: 35px;
	max-height: 550px;
	width: 340px;
	margin: 0 0 0 -170px;
	background-color: #f1f1f1;
	z-index: 1000011;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .3);
}

.ast-hb-account-login-wrapper .ast-hb-account-login-bg {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
	opacity: .7;
	z-index: 1000010;
	transition: all .3s;
}

.ast-hb-account-login-wrapper .ast-hb-login-header .ast-hb-login-close {
	background: 0 0;
	border: 0;
	font-size: 24px;
	line-height: 1;
	padding: .4em;
	color: inherit;
	-js-display: flex;
	display: flex;
	box-shadow: none;
}

.ast-hb-account-login-wrapper #loginform input[type=password], .ast-hb-account-login-wrapper #loginform input[type=text] {
	width: 100%;
	max-width: 100%;
	margin-top: 10px;
	border: 1px solid;
	background-color: transparent;
	vertical-align: middle;
}

.ast-hb-account-login-form-footer a.ast-header-account-footer-link:not(:last-child) span:after {
	content: "|";
	margin: 0 .4em;
}

.ast-header-account-link.ast-account-action-link, .ast-header-account-link.ast-account-action-login, .ast-header-account-link.ast-account-action-login.customize-unpreviewable, .ast-header-break-point .ast-header-account-link {
	cursor: pointer;
	pointer-events: all;
}

.ast-header-account {
	-js-display: flex;
	display: flex;
}

.ast-hb-account-login-wrapper {
	visibility: hidden;
}

.ast-hb-account-login-wrapper .ast-hb-login-header {
	-js-display: flex;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	justify-content: flex-end;
	min-height: calc(1.2em + 24px);
}

.ast-hb-account-login-wrapper .ast-hb-account-login {
	transform: scale(.7);
	opacity: 0;
	transition: all .3s;
	overflow: auto;
}

.ast-hb-account-login-wrapper.show {
	visibility: visible;
}

.ast-hb-account-login-wrapper.show .ast-hb-account-login {
	transform: scale(1) translateY(-50%);
	opacity: 1;
}

.ast-hb-login-body {
	height: 100%;
	position: relative;
	line-height: 1.5;
}

.ast-hf-account-menu-wrap.ast-main-header-bar-alignment {
	position: relative;
}

.main-header-bar .main-header-bar-navigation .ast-account-nav-menu {
	line-height: 1.45;
}

.ast-account-nav-menu {
	width: 240px;
	background: #fff;
	left: -999em;
	position: absolute;
	top: 0;
	z-index: 99999;
	list-style: none;
	margin: 0;
	padding-left: 0;
	border: 0;
	box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
}

.ast-account-nav-menu .sub-menu {
	right: auto;
	top: 0;
	margin-left: 0;
}

.ast-account-nav-menu .menu-item.focus>.sub-menu, .ast-account-nav-menu .menu-item:hover>.sub-menu {
	left: 100%;
}

.ast-account-nav-menu .ast-left-align-sub-menu.menu-item.focus>.sub-menu, .ast-account-nav-menu .ast-left-align-sub-menu.menu-item:hover>.sub-menu {
	left: -100%;
}

.ast-account-nav-menu .menu-item .menu-link {
	padding: .9em 1em;
}

.ast-account-nav-menu .menu-item {
	border-style: none;
}

.ast-account-nav-menu .menu-item.menu-item-has-children>.menu-link:after {
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translate(0, -50%) rotate(270deg);
}

.ast-above-header-bar .main-header-menu.ast-account-nav-menu>.menu-item, .ast-below-header-bar .main-header-menu.ast-account-nav-menu>.menu-item, .ast-primary-header-bar .main-header-menu.ast-account-nav-menu>.menu-item {
	height: auto;
	line-height: unset;
	bottom: -5px;
}

.ast-header-account-wrap .woocommerce-MyAccount-navigation-link.is-active a {
	background: unset;
}

.ast-header-account-wrap .menu-item:last-child>.menu-link {
	border-style: none;
}

.ast-divider-wrapper {
	border: 0;
}

.ast-mobile-popup-content .ast-header-divider-element {
	justify-content: center;
}

.ast-header-divider-element {
	position: relative;
}

.ast-fb-divider-layout-vertical {
	position: relative;
}

.ast-hb-divider-layout-vertical.ast-header-divider-element {
	height: 100%;
}

.ast-mobile-header-content .ast-builder-layout-element:not(.ast-builder-menu):not(.ast-header-divider-element), .ast-mobile-popup-content .ast-builder-layout-element:not(.ast-builder-menu):not(.ast-header-divider-element) {
	padding: 15px 20px;
}

.footer-widget-area .ast-footer-divider-element {
	position: relative;
	align-items: center;
}

.footer-widget-area .ast-divider-wrapper {
	display: inline-block;
}

.ast-builder-footer-grid-columns .ast-fb-divider-layout-horizontal {
	-js-display: inline-flex;
	display: inline-flex;
	vertical-align: middle;
}

[data-section*=section-fb-button-] .ast-builder-button-size-xs .ast-custom-button, [data-section*=section-hb-button-] .ast-builder-button-size-xs .ast-custom-button {
	font-size: 13px;
	padding: 8px 20px;
}

[data-section*=section-fb-button-] .ast-builder-button-size-sm .ast-custom-button, [data-section*=section-hb-button-] .ast-builder-button-size-sm .ast-custom-button {
	font-size: 15px;
	padding: 10px 40px;
}

[data-section*=section-fb-button-] .ast-builder-button-size-md .ast-custom-button, [data-section*=section-hb-button-] .ast-builder-button-size-md .ast-custom-button {
	font-size: 17px;
	padding: 15px 45px;
}

[data-section*=section-fb-button-] .ast-builder-button-size-lg .ast-custom-button, [data-section*=section-hb-button-] .ast-builder-button-size-lg .ast-custom-button {
	font-size: 19px;
	padding: 20px 50px;
}

[data-section*=section-fb-button-] .ast-builder-button-size-xl .ast-custom-button, [data-section*=section-hb-button-] .ast-builder-button-size-xl .ast-custom-button {
	font-size: 21px;
	padding: 25px 55px;
}

.ast-fb-divider-layout-vertical {
	-js-display: flex;
	display: flex;
}

.site-footer-section {
	position: relative;
}

.ast-builder-language-switcher .ast-builder-language-switcher-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: normal;
	-webkit-tap-highlight-color: transparent;
}

.ast-builder-language-switcher-layout-vertical .ast-builder-language-switcher {
	display: block;
}

.ast-builder-language-switcher-layout-vertical .ast-builder-language-switcher-menu {
	display: block;
}

.ast-builder-language-switcher-layout-horizontal .ast-builder-language-switcher {
	-js-display: flex;
	display: flex;
}

.ast-builder-language-switcher-layout-horizontal .ast-builder-language-switcher-menu {
	-js-display: flex;
	display: flex;
	flex-wrap: wrap;
}

.ast-builder-language-switcher a {
	-js-display: flex;
	display: flex;
	align-items: center;
}

.ast-lswitcher-item-footer, .ast-lswitcher-item-header {
	-js-display: inline-flex;
	display: inline-flex;
}

span.ast-lswitcher-item-footer:last-child, span.ast-lswitcher-item-header:last-child {
	margin-right: 0;
}

.ast-header-sticky-active {
	position: fixed !important;
	right: 0;
	left: 0;
	margin: 0 auto;
	z-index: 99;
}

.ast-footer-sticky-active .ast-custom-footer {
	position: fixed !important;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	z-index: 99;
}

.ast-custom-header {
	position: relative;
	z-index: 99;
}

.ast-custom-header.ast-header-sticky-active .fl-row-content-wrap {
	transition: padding .3s linear;
}

.ast-custom-header.ast-header-sticky-active .fl-module-content {
	transition: all .3s linear;
}

.ast-custom-header.ast-header-sticky-active .elementor-section-wrap {
	transition: padding .3s linear;
}

.ast-custom-header.ast-header-sticky-active .elementor-row>.elementor-column>.elementor-element-populated {
	transition: all .3s linear;
}

.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-row-content-wrap {
	transition: padding .3s linear;
	padding-top: 5px;
	padding-bottom: 5px;
	box-sizing: border-box;
}

.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-module-content {
	margin-top: 5px;
	margin-bottom: 5px;
	transition: all .3s linear;
}

.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-module-content.fl-node-content img {
	max-height: 50px;
	width: auto;
}

.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-section-wrap {
	transition: padding .3s linear;
	box-sizing: border-box;
}

.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-section-wrap img {
	max-height: 50px;
	width: auto;
}

.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-row>.elementor-column>.elementor-element-populated {
	max-height: 60px;
	transition: all .3s linear;
}

.ast-custom-header.ast-header-sticky-active {
	top: 0;
	width: 100%;
	transition: ease-out;
}

.single-advanced-hook .ast-no-title, .single-advanced-hook .hentry {
	margin: 0;
}

.js_active .ast-plain-container.single-advanced-hook .entry-header {
	margin: 0;
}

.summary.entry-summary+[CLASS*=astra-advanced-hook] {
	clear: both;
}

.single-astra-advanced-hook .wp-block-buttons, .single-astra-advanced-hook .wp-block-uagb-buttons {
	margin-bottom: 1.5em;
}

.single-astra-advanced-hook .ast-container {
	flex-wrap: wrap;
}

.single-astra-advanced-hook .ast-container>* {
	width: 100%;
}

body.ast-padded-layout::after, body.ast-padded-layout::before {
	background: inherit;
	content: "";
	display: block;
	height: 0;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 999;
}

body.ast-padded-layout::after {
	bottom: 0;
}

body.ast-padded-layout {
	background-attachment: fixed;
}

body.ast-padded-layout::before {
	top: 0;
}

@media (min-width:44.375em) {
	body.ast-padded-layout.admin-bar::before {
		top: 46px;
	}
}

@media (min-width:48.9375em) {
	body.ast-padded-layout.admin-bar::before {
		top: 32px;
	}
}

.elementor-page.ast-box-layout #page, .elementor-page.ast-padded-layout #page {
	overflow: hidden;
}

.siteorigin-panels.ast-box-layout #page, .siteorigin-panels.ast-padded-layout #page {
	overflow: hidden;
}

.ast-separate-container.ast-box-layout #content .ast-container {
	padding-left: 0;
	padding-right: 0;
}

@media (max-width:768px) {
	.ast-separate-container.ast-box-layout #content .ast-container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width:544px) {
	.ast-separate-container.ast-box-layout #content .ast-container {
		padding-left: .54em;
		padding-right: .54em;
	}
}

.js_active .ast-box-layout #page, .js_active .ast-padded-layout #page {
	overflow: hidden;
}

.js_active .ast-box-layout.ast-page-builder-template .vc_row[data-vc-full-width], .js_active .ast-padded-layout.ast-page-builder-template .vc_row[data-vc-full-width] {
	max-width: 100%;
	left: 0 !important;
}

.ast-sticky-active {
	position: fixed !important;
	right: 0;
	left: 0;
	margin: 0 auto;
}

.ast-nav-up {
	transform: translateY(-100%);
}

.site-header .sticky-custom-logo {
	display: none;
}

.ast-primary-sticky-header-active li.ast-masthead-custom-menu-items a, .ast-primary-sticky-header-active li.ast-masthead-custom-menu-items a:focus, .ast-primary-sticky-header-active li.ast-masthead-custom-menu-items a:hover {
	background: 0 0;
}

.ast-fullscreen-active .ast-above-header, .ast-offcanvas-active .ast-above-header {
	z-index: 4;
}

.ast-fullscreen-active .ast-above-header.ast-sticky-active, .ast-offcanvas-active .ast-above-header.ast-sticky-active {
	z-index: 0;
}

#ast-fixed-header {
	position: fixed;
	visibility: hidden;
	top: 0;
	left: 0;
	width: 100%;
}

#ast-fixed-header .main-header-bar {
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

#ast-fixed-header.ast-header-slide {
	transform: translateY(-100%);
	transition: transform .3s linear, top .3s linear, visibility .3s linear;
}

#ast-fixed-header.ast-header-fade {
	opacity: 0;
	transition: opacity .3s linear;
}

.main-header-bar.ast-sticky-active {
	box-shadow: 0 2px 10px 0 rgba(36, 50, 66, .075);
}

.ast-sticky-custom-logo .ast-header-sticked .custom-logo-link, .ast-sticky-custom-logo .ast-header-sticked .custom-mobile-logo-link {
	display: none;
}

.ast-sticky-custom-logo .ast-header-sticked .sticky-custom-logo {
	display: inline-block;
}

.ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo {
	display: none;
}

.ast-header-stick-fade-active .ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo, .ast-header-stick-scroll-active .ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo, .ast-header-stick-slide-active .ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo {
	display: inline-block;
}

.ast-sticky-main-shrink .ast-sticky-shrunk .main-header-bar, .ast-sticky-main-shrink .ast-sticky-shrunk.main-header-bar {
	line-height: 55px;
}

.ast-sticky-main-shrink .ast-sticky-shrunk .main-header-bar .ast-site-identity, .ast-sticky-main-shrink .ast-sticky-shrunk.main-header-bar .ast-site-identity {
	padding-top: .5em;
	padding-bottom: .5em;
}

.ast-sticky-main-shrink .ast-sticky-shrunk .site-navigation {
	line-height: 3;
}

.ast-sticky-main-shrink .ast-sticky-shrunk .site-logo-img img {
	max-height: 55px !important;
	width: auto;
}

.ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk .main-header-bar, .ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk.main-header-bar {
	padding-bottom: 0;
}

.ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk .ast-mobile-menu-buttons {
	line-height: 0;
	padding-bottom: .5em;
}

.ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk .site-branding {
	padding-bottom: .5em;
}

.ast-sticky-above-shrink .ast-sticky-shrunk .ast-above-header-bar .ast-site-identity, .ast-sticky-above-shrink .ast-sticky-shrunk.ast-above-header-bar .ast-site-identity {
	padding-top: .5em;
	padding-bottom: .5em;
}

.ast-sticky-above-shrink .ast-sticky-shrunk .site-navigation {
	line-height: 3;
}

.ast-sticky-above-shrink .ast-sticky-shrunk .site-logo-img img {
	max-height: 55px;
	width: auto;
}

.ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk .ast-above-header-bar, .ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk.ast-above-header-bar {
	padding-bottom: 0;
}

.ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk .ast-mobile-menu-buttons {
	line-height: 0;
	padding-bottom: .5em;
}

.ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk .site-branding {
	padding-bottom: .5em;
}

.ast-sticky-below-shrink .ast-sticky-shrunk .ast-below-header-bar .ast-site-identity, .ast-sticky-below-shrink .ast-sticky-shrunk.ast-below-header-bar .ast-site-identity {
	padding-top: .5em;
	padding-bottom: .5em;
}

.ast-sticky-below-shrink .ast-sticky-shrunk .site-navigation {
	line-height: 3;
}

.ast-sticky-below-shrink .ast-sticky-shrunk .site-logo-img img {
	max-height: 55px;
	width: auto;
}

.ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk .ast-below-header-bar, .ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk.ast-below-header-bar {
	padding-bottom: 0;
}

.ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk .ast-mobile-menu-buttons {
	line-height: 0;
	padding-bottom: .5em;
}

.ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk .site-branding {
	padding-bottom: .5em;
}

.ast-header-break-point .ast-sticky-active .sticky-custom-logo img {
	display: block;
}

.ast-header-break-point .ast-has-mobile-header-logo .ast-header-sticked .sticky-custom-logo img {
	display: block;
}

.ast-header-break-point .ast-has-mobile-header-logo .ast-header-sticked .ast-mobile-header-logo {
	display: none;
}

.ast-header-break-point .ast-header-sticked .sticky-custom-logo img {
	display: block;
}

.ast-header-break-point.ast-inherit-site-logo-sticky .ast-has-mobile-header-logo .ast-header-sticked .custom-logo-link img {
	display: none;
}

.ast-header-break-point.ast-inherit-site-logo-sticky .ast-has-mobile-header-logo .ast-header-sticked .custom-mobile-logo-link img {
	display: inline-block;
}

.above-header-toggle-on .main-header-bar {
	z-index: 1;
}

.ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content {
	display: none;
}

.ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content {
	display: none;
}

.ast-main-header-nav-open.ast-hfb-header .ast-mobile-header-wrap .ast-mobile-header-content {
	display: block;
}

.ast-main-header-nav-open.ast-hfb-header .ast-desktop-header-content {
	display: block;
}

.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content, .ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content, .ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content {
	display: block;
}

.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content, .ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content, .ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content {
	display: block;
}

.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content, .ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content, .ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content {
	display: none;
}

.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-desktop-header-content, .ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-desktop-header-content, .ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-desktop-header-content {
	display: none;
}

.ast-header-stick-fade-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content, .ast-header-stick-scroll-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content, .ast-header-stick-slide-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content {
	display: none;
}

.ast-header-stick-fade-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content, .ast-header-stick-scroll-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content, .ast-header-stick-slide-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content {
	display: none;
}

.ast-above-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content, .ast-above-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content, .ast-above-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content, .ast-above-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content, .ast-below-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content, .ast-below-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content, .ast-below-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content, .ast-below-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content, .ast-primary-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content, .ast-primary-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content, .ast-primary-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content, .ast-primary-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content {
	position: fixed;
}

.site-above-header-wrap, .site-below-header-wrap, .site-primary-header-wrap {
	transition: all .2s linear;
}

.ast-header-stick-slide-active .ast-flyout-menu-enable.ast-header-break-point #masthead>.main-header-bar-navigation {
	display: none !important;
}

.ast-header-stick-fade-active .ast-flyout-menu-enable.ast-header-break-point #masthead>.main-header-bar-navigation {
	display: none !important;
}

.ast-flyout-menu-overlay .ast-stick-primary-below-wrapper.ast-sticky-active {
	z-index: 5;
}

.ast-fullscreen-menu-overlay #ast-fixed-header {
	z-index: 9;
}

.ast-flyout-menu-enable.ast-primary-sticky-enabled .ast-stick-primary-below-wrapper, .ast-flyout-menu-enable.ast-primary-sticky-enabled .main-header-bar {
	overflow-y: unset !important;
}

#ast-mobile-header .content-align-flex-start {
	max-height: 60vh;
	overflow: auto;
}

.astra-full-megamenu-wrapper {
	z-index: 99999;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.sub-menu>.menu-item {
	display: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.ast-mm-has-desc>.menu-link {
	vertical-align: middle;
	text-align: center;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .menu-item:hover>.menu-link {
	background-color: transparent;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu {
	opacity: 0;
	visibility: hidden;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu-focus .menu-item>.menu-link {
	background-color: transparent;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus {
	opacity: 1;
	visibility: visible;
	-js-display: flex;
	display: flex;
	padding: 15px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item {
	padding-left: 15px;
	padding-right: 15px;
	display: block;
	flex: 1;
	opacity: 1;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item:first-child {
	padding-left: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item:last-child {
	padding-right: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu.col-2 .menu-item {
	width: 50%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu.col-3 .menu-item {
	width: 33.33%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu.col-4 .menu-item {
	width: 25%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu .menu-item:last-child {
	border-right: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus .sub-menu {
	background-color: transparent;
	display: block;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus .astra-nested-sub-menu .menu-item .menu-link {
	padding-left: 24px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus .astra-nested-sub-menu .astra-nested-sub-menu .menu-item .menu-link {
	padding-left: 48px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu .sub-menu {
	border: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item .sub-menu {
	position: static;
	width: 100%;
	margin: auto;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item .sub-menu .menu-item {
	width: 100%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus>.menu-item {
	padding-left: 15px;
	padding-right: 15px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus>.menu-item:first-child {
	padding-left: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus>.menu-item:last-child {
	padding-right: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu .ast-header-navigation-arrow {
	display: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper.astra-megamenu-wrapper-focus {
	opacity: 1;
	visibility: visible;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper.astra-megamenu-wrapper-focus .astra-megamenu.astra-megamenu-focus {
	-js-display: flex;
	display: flex;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper .astra-mega-menu-width-full-stretched {
	width: 100%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper .astra-mega-menu-width-full-stretched .ast-mm-template-content {
	padding: 0;
}

.ast-desktop .ast-mega-menu-enabled .menu-item-has-children.astra-megamenu-li.menu-item .astra-megamenu.sub-menu .menu-item>.menu-link::after {
	content: "";
}

.ast-desktop .ast-mega-menu-enabled .menu-item-has-children.astra-megamenu-li.menu-item .astra-megamenu.sub-menu .menu-item>.menu-link .ast-icon.icon-arrow {
	display: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .sub-menu .menu-link, .ast-desktop .ast-mega-menu-enabled.submenu-with-border .astra-megamenu-li .sub-menu .menu-link {
	border: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu {
	opacity: 1;
	visibility: visible;
	-js-display: flex;
	display: flex;
	padding: 15px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu>.menu-item {
	padding-left: 15px;
	padding-right: 15px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu>.menu-item:first-child {
	padding-left: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu>.menu-item:last-child {
	padding-right: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu>.menu-item {
	padding-left: 15px;
	padding-right: 15px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu>.menu-item:first-child {
	padding-left: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu>.menu-item:last-child {
	padding-right: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu.col-2 .menu-item {
	width: 50%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu.col-3 .menu-item {
	width: 33.33%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu.col-4 .menu-item {
	width: 25%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu>.menu-item {
	display: block;
	flex: 1;
	opacity: 1;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu .sub-menu {
	background-color: transparent;
	display: block;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu .astra-nested-sub-menu .menu-item .menu-link {
	padding-left: 24px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu .astra-nested-sub-menu .astra-nested-sub-menu .menu-item .menu-link {
	padding-left: 48px;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu.sub-menu .sub-menu {
	border: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu.sub-menu>.menu-item .sub-menu {
	position: static;
	width: 100%;
	margin: auto;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu.sub-menu>.menu-item .sub-menu .menu-item {
	width: 100%;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-megamenu.sub-menu .menu-item:last-child {
	border-right: none;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-full-megamenu-wrapper {
	opacity: 1;
	visibility: visible;
}

.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-full-megamenu-wrapper .astra-megamenu {
	-js-display: flex;
	display: flex;
}

.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li:hover .astra-megamenu .sub-menu .menu-item {
	width: 100%;
}

.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li:hover .astra-megamenu.sub-menu .menu-item .sub-menu {
	min-width: 100%;
}

.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li .astra-megamenu.astra-megamenu-focus .sub-menu .menu-item {
	width: 100%;
}

.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu .menu-item .sub-menu {
	min-width: 100%;
}

.ast-desktop .ast-mega-menu-enabled .astra-full-megamenu-wrapper {
	background: #fff;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	top: 100%;
}

.ast-desktop .ast-mega-menu-enabled .astra-full-megamenu-wrapper .astra-megamenu.sub-menu {
	display: none;
	position: relative;
	left: 0;
	top: 0;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
	border-width: 0;
}

.ast-desktop .ast-mega-menu-enabled .astra-full-megamenu-wrapper .astra-mega-menu-width-full-stretched.sub-menu {
	padding: 15px;
}

.ast-desktop .ast-mega-menu-enabled .ast-hide-menu-item+.ast-mm-custom-content {
	margin-top: .9em;
}

.ast-desktop .ast-mega-menu-enabled .menu-item-heading:not(.menu-item-has-children)>a {
	margin-bottom: .9em;
}

.ast-desktop .ast-above-header-menu .astra-megamenu-li .sub-menu .menu-item.current-menu-ancestor>.menu-link, .ast-desktop .ast-below-header-menu .astra-megamenu-li .sub-menu .menu-item.current-menu-ancestor>.menu-link, .ast-desktop .main-header-menu .astra-megamenu-li .sub-menu .menu-item.current-menu-ancestor>.menu-link {
	background-color: transparent;
	color: inherit;
}

.ast-desktop .ast-above-header-menu .astra-megamenu-li .sub-menu .menu-item-heading .menu-text, .ast-desktop .ast-below-header-menu .astra-megamenu-li .sub-menu .menu-item-heading .menu-text, .ast-desktop .main-header-menu .astra-megamenu-li .sub-menu .menu-item-heading .menu-text {
	vertical-align: text-top;
}

.ast-desktop .ast-mm-custom-text-content, .ast-desktop .ast-mm-template-content {
	padding: 0 1em;
}

.ast-desktop .ast-mm-custom-text-content {
	margin-bottom: .9em;
}

.ast-desktop .ast-below-header .ast-mm-custom-text-content, .ast-desktop .ast-below-header .ast-mm-template-content {
	padding: .9em 1em;
}

.ast-desktop .submenu-with-border .astra-full-megamenu-wrapper {
	border-width: 1px;
	border-style: solid;
}

.ast-desktop .ast-mm-widget-content a {
	display: initial;
}

.ast-desktop .ast-mm-widget-content .ast-mm-widget-item {
	padding: 1.5em;
	margin-bottom: .9em;
}

.ast-desktop .ast-mm-widget-content .ast-search-submit {
	display: none;
}

.ast-desktop .submenu-with-border .astra-megamenu {
	border-width: 1px;
}

.ast-menu-description {
	line-height: 1.6;
	display: block;
	font-size: .8em;
	padding: 2px 0;
}

.site-header a .ast-menu-description, .site-header a .sub-arrow {
	transition: none;
}

.site-header .menu-text {
	transition: none;
}

.ast-header-break-point .ast-menu-description {
	line-height: inherit;
}

.astra-mm-highlight-label {
	font-size: .7em;
	margin-left: 5px;
	line-height: normal;
	padding: 3px 6px;
	border-radius: 2px;
}

.ast-desktop .ast-hide-menu-item {
	display: none;
}

.ast-desktop .ast-mega-menu-enabled .ast-hide-menu-item {
	display: none;
}

.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu>.menu-item-has-children>.menu-link::after, .ast-desktop .ast-mega-menu-enabled.ast-below-header-menu>.menu-item-has-children>.menu-link::after, .ast-desktop .ast-mega-menu-enabled.main-header-menu>.menu-item-has-children>.menu-link::after {
	content: "";
	margin: 0;
}

.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow:after, .ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow:after, .ast-desktop .ast-mega-menu-enabled.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow:after {
	transform: rotate(-90deg);
}

.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow, .ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow, .ast-desktop .ast-mega-menu-enabled.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}

.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .ast-masthead-custom-menu-items a:focus, .ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .ast-masthead-custom-menu-items a:hover, .ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .ast-masthead-custom-menu-items a:focus, .ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .ast-masthead-custom-menu-items a:hover, .ast-desktop .ast-mega-menu-enabled.main-header-menu .ast-masthead-custom-menu-items a:focus, .ast-desktop .ast-mega-menu-enabled.main-header-menu .ast-masthead-custom-menu-items a:hover {
	background: 0 0;
}

.ast-builder-menu-mobile .ast-mega-menu-enabled.main-header-menu .menu-item-has-children.astra-megamenu-li>.menu-link .sub-arrow:after, .ast-builder-menu-mobile .ast-mega-menu-enabled.main-header-menu .menu-item-has-children>.menu-link .sub-arrow:after, .ast-header-break-point .ast-mega-menu-enabled.main-header-menu .menu-item-has-children.astra-megamenu-li>.menu-link .sub-arrow:after, .ast-header-break-point .ast-mega-menu-enabled.main-header-menu .menu-item-has-children>.menu-link .sub-arrow:after {
	display: none;
}

.ast-disable-link {
	cursor: default;
}

.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-heading:focus>.menu-link, .ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-heading:hover>.menu-link, .ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-heading>.menu-link:hover {
	background: 0 0;
}

.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-heading:focus>.menu-link, .ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-heading:hover>.menu-link, .ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-heading>.menu-link:hover {
	background: 0 0;
}

.ast-desktop .ast-mega-menu-enabled.main-header-menu .sub-menu .menu-item.menu-item-heading>.menu-link {
	background: 0 0;
}

.ast-desktop .ast-above-header-menu .astra-mega-menu-width-full, .ast-desktop .ast-above-header-menu .astra-mega-menu-width-full-stretched, .ast-desktop .ast-below-header-menu .astra-mega-menu-width-full, .ast-desktop .ast-below-header-menu .astra-mega-menu-width-full-stretched, .ast-desktop .astra-mega-menu-width-full, .ast-desktop .astra-mega-menu-width-full-stretched {
	background: 0 0;
}

.ast-desktop .main-header-menu>.menu-item .astra-full-megamenu-wrapper:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-100%);
}

.ast-desktop .main-header-menu.ast-menu-shadow .astra-full-megamenu-wrapper .sub-menu {
	box-shadow: none;
}

.ast-desktop .main-header-menu.ast-menu-shadow .astra-megamenu .sub-menu {
	box-shadow: none;
}

.ast-desktop .main-header-menu.ast-menu-shadow .astra-full-megamenu-wrapper {
	box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
}

.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item, .ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item, .ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item {
	display: none;
}

.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle, .ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle, .ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle {
	display: none;
}

.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.sub-menu, .ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.sub-menu, .ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.sub-menu {
	display: block !important;
}

.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.ast-mm-custom-content+.sub-menu, .ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.ast-mm-custom-content+.sub-menu, .ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.ast-mm-custom-content+.sub-menu {
	display: block !important;
}

.ast-hidden {
	display: none !important;
}

.rtl.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:hover .astra-full-megamenu-wrapper .astra-megamenu {
	right: 0;
}

.main-header-bar-wrap .ast-search-box.header-cover {
	z-index: 7;
}

.ast-below-header-wrap .ast-search-box.header-cover #close, .ast-below-header-wrap .ast-search-box.header-cover .search-field {
	font-size: 1.8em;
}

.ast-below-header-wrap .ast-search-box.header-cover .search-submit {
	font-size: 1.5em;
}

.ast-search-box.full-screen, .ast-search-box.header-cover {
	display: none;
	opacity: 0;
	transition: opacity .3s ease-in-out, display .3s ease-in-out;
	width: 100%;
	height: 100%;
}

.ast-search-box.full-screen .search-field, .ast-search-box.header-cover .search-field {
	background: 0 0;
	border: 0;
	color: #fafafa;
	box-shadow: none;
	text-align: left;
	padding: 0;
}

.ast-search-box.full-screen .search-submit, .ast-search-box.header-cover .search-submit {
	background: var(--ast-fs-search-submit-background, 0 0);
	padding: 0;
	border-radius: 50%;
	box-shadow: none;
	color: var(--ast-fs-search-text-color, #9e9e9e);
	transition: all .7s ease-In;
	outline: 0;
	border: 0;
	vertical-align: middle;
}

.ast-search-box.full-screen .ast-search-wrapper, .ast-search-box.header-cover .ast-search-wrapper {
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.ast-search-box.full-screen .ast-search-wrapper .search-form, .ast-search-box.header-cover .ast-search-wrapper .search-form {
	line-height: normal;
}

.ast-search-box.full-screen #close, .ast-search-box.header-cover #close {
	color: #fafafa;
	transform: rotate(0);
	font-size: 2em;
	cursor: pointer;
	z-index: 9;
	font-weight: 400;
}

.ast-search-box.full-screen .search-field::-webkit-input-placeholder, .ast-search-box.header-cover .search-field::-webkit-input-placeholder {
	color: #fafafa;
}

.ast-search-box.full-screen .search-field:-moz-placeholder, .ast-search-box.header-cover .search-field:-moz-placeholder {
	color: #fafafa;
}

.ast-search-box.full-screen .search-field::-moz-placeholder, .ast-search-box.header-cover .search-field::-moz-placeholder {
	color: #fafafa;
}

.ast-search-box.full-screen .search-field:-ms-input-placeholder, .ast-search-box.header-cover .search-field:-ms-input-placeholder {
	color: #fafafa;
}

.ast-search-box.header-cover {
	position: absolute;
	background: rgba(25, 25, 25, .96);
	top: 0;
	z-index: 10;
}

.ast-search-box.header-cover .search-field {
	font-size: 2em;
	line-height: 2;
	width: 100%;
}

.ast-search-box.header-cover .ast-container {
	position: relative;
}

.ast-search-box.header-cover .close, .ast-search-box.header-cover .search-submit, .ast-search-box.header-cover .search-text-wrap {
	display: inline-block;
}

.ast-search-box.header-cover .search-text-wrap {
	width: calc(100% - 2.5em);
	vertical-align: middle;
}

.ast-search-box.header-cover .search-submit {
	font-size: 1.7em;
	margin-right: 2em;
}

.ast-search-box.header-cover #close {
	vertical-align: middle;
	backface-visibility: hidden;
}

.ast-search-box.full-screen {
	position: fixed;
	background: rgba(25, 25, 25, .96);
	top: 0;
	left: 0;
	z-index: 999;
}

.ast-search-box.full-screen .ast-search-wrapper .large-search-text {
	text-align: center;
	color: #e2e2e2;
	font-size: 1.5em;
	font-weight: 400;
	transition-delay: 50ms;
	transition: all .3s ease-in-out;
}

.ast-search-box.full-screen .ast-search-wrapper fieldset {
	border: 0;
	padding: 2.5em 0 1em;
	border-bottom: 2px solid var(--ast-border-color);
}

.ast-search-box.full-screen .ast-search-wrapper .search-field {
	font-size: 2em;
	padding-left: 20px;
	line-height: 1.7;
	width: 92%;
	vertical-align: middle;
}

.ast-search-box.full-screen .ast-search-wrapper .search-form {
	width: 70%;
	margin: 20px auto;
}

.ast-search-box.full-screen .ast-search-wrapper .search-submit {
	font-size: var(--ast-fs-search-font-size, 1.7em);
}

.ast-search-box.full-screen #close {
	position: absolute;
	color: #fafafa;
	right: 1em;
	line-height: 1;
	cursor: pointer;
	z-index: 9;
	font-weight: 400;
	font-size: 2em;
	top: 1.5em;
	backface-visibility: hidden;
}

.ast-search-box.full-screen ::-webkit-input-placeholder {
	opacity: 0;
}

.ast-search-box.full-screen ::-moz-placeholder {
	opacity: 0;
}

.ast-search-box.full-screen :-ms-input-placeholder {
	opacity: 0;
}

.ast-search-box.full-screen :-moz-placeholder {
	opacity: 0;
}

@media (max-width:420px) {
	.ast-search-box.full-screen ::-webkit-input-placeholder {
		opacity: 1;
	}
	
	.ast-search-box.full-screen ::-moz-placeholder {
		opacity: 1;
	}
	
	.ast-search-box.full-screen :-ms-input-placeholder {
		opacity: 1;
	}
	
	.ast-search-box.full-screen :-moz-placeholder {
		opacity: 1;
	}
}

.ast-hfb-header .ast-search-box.full-screen.full-screen ::-webkit-input-placeholder {
	opacity: .5;
}

.ast-hfb-header .ast-search-box.full-screen.full-screen ::-moz-placeholder {
	opacity: .5;
}

.ast-hfb-header .ast-search-box.full-screen.full-screen :-ms-input-placeholder {
	opacity: .5;
}

.ast-hfb-header .ast-search-box.full-screen.full-screen :-moz-placeholder {
	opacity: .5;
}

.site-header .ast-inline-search.ast-search-menu-icon .search-form {
	padding-left: 0;
	padding-right: 0;
}

.site-header .ast-inline-search.ast-search-menu-icon .search-field {
	padding-left: 1em;
	padding-right: 2em;
}

.ast-inline-search.ast-search-menu-icon {
	position: relative;
	transform: none;
	left: 0;
	right: 0;
}

.ast-inline-search.ast-search-menu-icon .search-submit {
	display: block;
	background: 0 0;
	border: none;
	position: absolute;
	height: 100%;
	right: .25em;
	padding: 0;
	top: 0;
	font-size: 1.3em;
	color: #757575;
}

.ast-header-break-point .ast-inline-search.ast-search-menu-icon .search-form {
	padding: 0;
}

.ast-header-break-point .site-header .ast-inline-search.ast-search-menu-icon .search-field {
	padding-right: 2em;
}

.ast-header-break-point .ast-search-box.full-screen .ast-search-wrapper .search-field {
	width: 80%;
}

.ast-header-custom-item-inside.ast-desktop .main-header-menu .ast-search-menu-icon.full-screen, .ast-header-custom-item-inside.ast-desktop .main-header-menu .ast-search-menu-icon.header-cover {
	display: none;
}

.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-1 .ast-search-menu-icon .search-form {
	right: -1em;
	left: auto;
	padding-left: 0;
	padding-right: 3em;
}

.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-1 .search-field {
	padding-right: 0;
	padding-left: 1em;
}

.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-2 .ast-search-menu-icon .search-form {
	left: -1em;
	right: auto;
	padding-right: 0;
	padding-left: 3em;
}

.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-2 .search-field {
	padding-left: 0;
	padding-right: 1em;
}

.ast-header-break-point .ast-above-header .ast-above-header-section-1 .ast-inline-search.ast-search-menu-icon .search-field {
	padding-right: 0;
}

.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-2 .ast-search-menu-icon .search-form {
	padding-left: 0;
	left: auto;
	padding-right: 2em;
}

.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-2 .ast-search-menu-icon.slide-search .search-form {
	left: -1em;
	padding-left: 2em;
}

.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-1 .search-field {
	padding-right: 0;
}

.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .search-field {
	padding-right: 0;
	padding-left: 1em;
}

.ast-header-break-point .ast-above-header-mobile-stack .ast-above-header .ast-above-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form {
	right: auto;
	padding-right: 2em;
}

.ast-header-break-point .ast-swap-below-header-sections .ast-below-header .below-header-section-2 .ast-search-menu-icon.ast-inline-search .search-form {
	left: 0;
	padding-left: 0;
	padding-right: 2em;
}

.ast-header-break-point .ast-swap-below-header-sections .below-header-section-1 .ast-search-menu-icon .search-form {
	right: -1em;
	left: auto;
	padding-left: 0;
	padding-right: 3em;
}

.ast-header-break-point .ast-swap-below-header-sections .below-header-section-1 .search-field {
	padding-right: 0;
	padding-left: 1em;
}

.ast-header-break-point .ast-swap-below-header-sections .below-header-section-2 .ast-search-menu-icon .search-form {
	left: -1em;
	right: auto;
	padding-right: 0;
	padding-left: 3em;
}

.ast-header-break-point .ast-swap-below-header-sections .below-header-section-2 .search-field {
	padding-left: 0;
	padding-right: 1em;
}

.ast-header-break-point .ast-below-header .below-header-section-1 .ast-inline-search.ast-search-menu-icon .search-field {
	padding-right: 0;
}

.ast-header-break-point .ast-swap-below-header-sections.site-header .ast-below-header .ast-inline-search.ast-search-menu-icon .search-field {
	padding-left: 1em;
	padding-right: 0;
}

.ast-header-break-point .ast-swap-below-header-sections .ast-below-header .below-header-section-2 .ast-search-menu-icon .search-form {
	left: -1em;
	padding-left: 3em;
	padding-right: 1em;
}

.ast-below-header-mobile-stack .ast-below-header .below-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form {
	right: auto;
	padding-right: 2em;
}

.iphone.full-screen, .ipod.full-screen {
	position: fixed !important;
}

@media (max-width:992px) {
	.ast-above-header-mobile-stack .ast-above-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form {
		left: auto;
	}
	
	.ast-below-header-mobile-stack .below-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form {
		left: auto;
	}
}

@media (max-width:544px) {
	.ast-search-box.full-screen .ast-search-wrapper .large-search-text {
		display: none;
	}
	
	.ast-search-box.full-screen .ast-search-wrapper .search-field, .ast-search-box.full-screen .ast-search-wrapper .search-submit {
		font-size: 1.6em;
	}
}
