
		img:is([sizes="auto" i], [sizes^="auto," i]) {
			contain-intrinsic-size: 3000px 1500px
		}
	
		.wp-block-button__link {
			color: #fff;
			background-color: #32373c;
			border-radius: 9999px;
			box-shadow: none;
			text-decoration: none;
			padding: calc(.667em + 2px) calc(1.333em + 2px);
			font-size: 1.125em
		}

		.wp-block-file__button {
			background: #32373c;
			color: #fff;
			text-decoration: none
		}
	
		:root {
			--wp--preset--aspect-ratio--square: 1;
			--wp--preset--aspect-ratio--4-3: 4/3;
			--wp--preset--aspect-ratio--3-4: 3/4;
			--wp--preset--aspect-ratio--3-2: 3/2;
			--wp--preset--aspect-ratio--2-3: 2/3;
			--wp--preset--aspect-ratio--16-9: 16/9;
			--wp--preset--aspect-ratio--9-16: 9/16;
			--wp--preset--color--black: #000000;
			--wp--preset--color--cyan-bluish-gray: #abb8c3;
			--wp--preset--color--white: #ffffff;
			--wp--preset--color--pale-pink: #f78da7;
			--wp--preset--color--vivid-red: #cf2e2e;
			--wp--preset--color--luminous-vivid-orange: #ff6900;
			--wp--preset--color--luminous-vivid-amber: #fcb900;
			--wp--preset--color--light-green-cyan: #7bdcb5;
			--wp--preset--color--vivid-green-cyan: #00d084;
			--wp--preset--color--pale-cyan-blue: #8ed1fc;
			--wp--preset--color--vivid-cyan-blue: #0693e3;
			--wp--preset--color--vivid-purple: #9b51e0;
			--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
			--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
			--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
			--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
			--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
			--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
			--wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
			--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
			--wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
			--wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
			--wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
			--wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
			--wp--preset--font-size--small: 13px;
			--wp--preset--font-size--medium: 20px;
			--wp--preset--font-size--large: 36px;
			--wp--preset--font-size--x-large: 42px;
			--wp--preset--spacing--20: 0.44rem;
			--wp--preset--spacing--30: 0.67rem;
			--wp--preset--spacing--40: 1rem;
			--wp--preset--spacing--50: 1.5rem;
			--wp--preset--spacing--60: 2.25rem;
			--wp--preset--spacing--70: 3.38rem;
			--wp--preset--spacing--80: 5.06rem;
			--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
			--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
			--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
			--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
			--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
		}

		:where(.is-layout-flex) {
			gap: 0.5em;
		}

		:where(.is-layout-grid) {
			gap: 0.5em;
		}

		body .is-layout-flex {
			display: flex;
		}

		.is-layout-flex {
			flex-wrap: wrap;
			align-items: center;
		}

		.is-layout-flex> :is(*, div) {
			margin: 0;
		}

		body .is-layout-grid {
			display: grid;
		}

		.is-layout-grid> :is(*, div) {
			margin: 0;
		}

		:where(.wp-block-columns.is-layout-flex) {
			gap: 2em;
		}

		:where(.wp-block-columns.is-layout-grid) {
			gap: 2em;
		}

		:where(.wp-block-post-template.is-layout-flex) {
			gap: 1.25em;
		}

		:where(.wp-block-post-template.is-layout-grid) {
			gap: 1.25em;
		}

		.has-black-color {
			color: var(--wp--preset--color--black) !important;
		}

		.has-cyan-bluish-gray-color {
			color: var(--wp--preset--color--cyan-bluish-gray) !important;
		}

		.has-white-color {
			color: var(--wp--preset--color--white) !important;
		}

		.has-pale-pink-color {
			color: var(--wp--preset--color--pale-pink) !important;
		}

		.has-vivid-red-color {
			color: var(--wp--preset--color--vivid-red) !important;
		}

		.has-luminous-vivid-orange-color {
			color: var(--wp--preset--color--luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-amber-color {
			color: var(--wp--preset--color--luminous-vivid-amber) !important;
		}

		.has-light-green-cyan-color {
			color: var(--wp--preset--color--light-green-cyan) !important;
		}

		.has-vivid-green-cyan-color {
			color: var(--wp--preset--color--vivid-green-cyan) !important;
		}

		.has-pale-cyan-blue-color {
			color: var(--wp--preset--color--pale-cyan-blue) !important;
		}

		.has-vivid-cyan-blue-color {
			color: var(--wp--preset--color--vivid-cyan-blue) !important;
		}

		.has-vivid-purple-color {
			color: var(--wp--preset--color--vivid-purple) !important;
		}

		.has-black-background-color {
			background-color: var(--wp--preset--color--black) !important;
		}

		.has-cyan-bluish-gray-background-color {
			background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
		}

		.has-white-background-color {
			background-color: var(--wp--preset--color--white) !important;
		}

		.has-pale-pink-background-color {
			background-color: var(--wp--preset--color--pale-pink) !important;
		}

		.has-vivid-red-background-color {
			background-color: var(--wp--preset--color--vivid-red) !important;
		}

		.has-luminous-vivid-orange-background-color {
			background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-amber-background-color {
			background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
		}

		.has-light-green-cyan-background-color {
			background-color: var(--wp--preset--color--light-green-cyan) !important;
		}

		.has-vivid-green-cyan-background-color {
			background-color: var(--wp--preset--color--vivid-green-cyan) !important;
		}

		.has-pale-cyan-blue-background-color {
			background-color: var(--wp--preset--color--pale-cyan-blue) !important;
		}

		.has-vivid-cyan-blue-background-color {
			background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
		}

		.has-vivid-purple-background-color {
			background-color: var(--wp--preset--color--vivid-purple) !important;
		}

		.has-black-border-color {
			border-color: var(--wp--preset--color--black) !important;
		}

		.has-cyan-bluish-gray-border-color {
			border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
		}

		.has-white-border-color {
			border-color: var(--wp--preset--color--white) !important;
		}

		.has-pale-pink-border-color {
			border-color: var(--wp--preset--color--pale-pink) !important;
		}

		.has-vivid-red-border-color {
			border-color: var(--wp--preset--color--vivid-red) !important;
		}

		.has-luminous-vivid-orange-border-color {
			border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-amber-border-color {
			border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
		}

		.has-light-green-cyan-border-color {
			border-color: var(--wp--preset--color--light-green-cyan) !important;
		}

		.has-vivid-green-cyan-border-color {
			border-color: var(--wp--preset--color--vivid-green-cyan) !important;
		}

		.has-pale-cyan-blue-border-color {
			border-color: var(--wp--preset--color--pale-cyan-blue) !important;
		}

		.has-vivid-cyan-blue-border-color {
			border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
		}

		.has-vivid-purple-border-color {
			border-color: var(--wp--preset--color--vivid-purple) !important;
		}

		.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
			background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
		}

		.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
			background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
		}

		.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
			background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-orange-to-vivid-red-gradient-background {
			background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
		}

		.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
			background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
		}

		.has-cool-to-warm-spectrum-gradient-background {
			background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
		}

		.has-blush-light-purple-gradient-background {
			background: var(--wp--preset--gradient--blush-light-purple) !important;
		}

		.has-blush-bordeaux-gradient-background {
			background: var(--wp--preset--gradient--blush-bordeaux) !important;
		}

		.has-luminous-dusk-gradient-background {
			background: var(--wp--preset--gradient--luminous-dusk) !important;
		}

		.has-pale-ocean-gradient-background {
			background: var(--wp--preset--gradient--pale-ocean) !important;
		}

		.has-electric-grass-gradient-background {
			background: var(--wp--preset--gradient--electric-grass) !important;
		}

		.has-midnight-gradient-background {
			background: var(--wp--preset--gradient--midnight) !important;
		}

		.has-small-font-size {
			font-size: var(--wp--preset--font-size--small) !important;
		}

		.has-medium-font-size {
			font-size: var(--wp--preset--font-size--medium) !important;
		}

		.has-large-font-size {
			font-size: var(--wp--preset--font-size--large) !important;
		}

		.has-x-large-font-size {
			font-size: var(--wp--preset--font-size--x-large) !important;
		}

		:where(.wp-block-post-template.is-layout-flex) {
			gap: 1.25em;
		}

		:where(.wp-block-post-template.is-layout-grid) {
			gap: 1.25em;
		}

		:where(.wp-block-columns.is-layout-flex) {
			gap: 2em;
		}

		:where(.wp-block-columns.is-layout-grid) {
			gap: 2em;
		}

		:root :where(.wp-block-pullquote) {
			font-size: 1.5em;
			line-height: 1.6;
		}
	
		.wpb-pcf-btn-default,
		.wpb-pcf-form-style-true input[type=submit],
		.wpb-pcf-form-style-true input[type=button],
		.wpb-pcf-form-style-true input[type=submit],
		.wpb-pcf-form-style-true input[type=button] {
			color: #ffffff !important;
			background: #ff7a00 !important;
		}

		.wpb-pcf-btn-default:hover,
		.wpb-pcf-btn-default:focus,
		.wpb-pcf-form-style-true input[type=submit]:hover,
		.wpb-pcf-form-style-true input[type=submit]:focus,
		.wpb-pcf-form-style-true input[type=button]:hover,
		.wpb-pcf-form-style-true input[type=button]:focus,
		.wpb-pcf-form-style-true input[type=submit]:hover,
		.wpb-pcf-form-style-true input[type=button]:hover,
		.wpb-pcf-form-style-true input[type=submit]:focus,
		.wpb-pcf-form-style-true input[type=button]:focus {
			color: #ffffff !important;
			background: #ff7a00 !important;
		}
	
		.page-id-6658.disabled_footer_top .footer_top_holder,
		.page-id-6658.disabled_footer_bottom .footer_bottom_holder {
			display: none;
		}
	
	
		.broken_link,
		a.broken_link {
			text-decoration: line-through;
		}
	
	
		.saboxplugin-wrap {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			-ms-box-sizing: border-box;
			box-sizing: border-box;
			border: 1px solid #eee;
			width: 100%;
			clear: both;
			display: block;
			overflow: hidden;
			word-wrap: break-word;
			position: relative
		}

		.saboxplugin-wrap .saboxplugin-gravatar {
			float: left;
			padding: 0 20px 20px 20px
		}

		.saboxplugin-wrap .saboxplugin-gravatar img {
			max-width: 100px;
			height: auto;
			border-radius: 0;
		}

		.saboxplugin-wrap .saboxplugin-authorname {
			font-size: 18px;
			line-height: 1;
			margin: 20px 0 0 20px;
			display: block
		}

		.saboxplugin-wrap .saboxplugin-authorname a {
			text-decoration: none
		}

		.saboxplugin-wrap .saboxplugin-authorname a:focus {
			outline: 0
		}

		.saboxplugin-wrap .saboxplugin-desc {
			display: block;
			margin: 5px 20px
		}

		.saboxplugin-wrap .saboxplugin-desc a {
			text-decoration: underline
		}

		.saboxplugin-wrap .saboxplugin-desc p {
			margin: 5px 0 12px
		}

		.saboxplugin-wrap .saboxplugin-web {
			margin: 0 20px 15px;
			text-align: left
		}

		.saboxplugin-wrap .sab-web-position {
			text-align: right
		}

		.saboxplugin-wrap .saboxplugin-web a {
			color: #ccc;
			text-decoration: none
		}

		.saboxplugin-wrap .saboxplugin-socials {
			position: relative;
			display: block;
			background: #fcfcfc;
			padding: 5px;
			border-top: 1px solid #eee
		}

		.saboxplugin-wrap .saboxplugin-socials a svg {
			width: 20px;
			height: 20px
		}

		.saboxplugin-wrap .saboxplugin-socials a svg .st2 {
			fill: #fff;
			transform-origin: center center;
		}

		.saboxplugin-wrap .saboxplugin-socials a svg .st1 {
			fill: rgba(0, 0, 0, .3)
		}

		.saboxplugin-wrap .saboxplugin-socials a:hover {
			opacity: .8;
			-webkit-transition: opacity .4s;
			-moz-transition: opacity .4s;
			-o-transition: opacity .4s;
			transition: opacity .4s;
			box-shadow: none !important;
			-webkit-box-shadow: none !important
		}

		.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {
			box-shadow: none;
			padding: 0;
			border: 0;
			-webkit-transition: opacity .4s;
			-moz-transition: opacity .4s;
			-o-transition: opacity .4s;
			transition: opacity .4s;
			display: inline-block;
			color: #fff;
			font-size: 0;
			text-decoration: inherit;
			margin: 5px;
			-webkit-border-radius: 0;
			-moz-border-radius: 0;
			-ms-border-radius: 0;
			-o-border-radius: 0;
			border-radius: 0;
			overflow: hidden
		}

		.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {
			text-decoration: inherit;
			box-shadow: none;
			position: relative;
			display: -moz-inline-stack;
			display: inline-block;
			vertical-align: middle;
			zoom: 1;
			margin: 10px 5px;
			color: #444;
			fill: #444
		}

		.ie7 .clearfix {
			zoom: 1
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-twitch {
			border-color: #38245c
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-addthis {
			border-color: #e91c00
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-behance {
			border-color: #003eb0
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-delicious {
			border-color: #06c
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-deviantart {
			border-color: #036824
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-digg {
			border-color: #00327c
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-dribbble {
			border-color: #ba1655
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-facebook {
			border-color: #1e2e4f
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-flickr {
			border-color: #003576
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-github {
			border-color: #264874
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-google {
			border-color: #0b51c5
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-googleplus {
			border-color: #96271a
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-html5 {
			border-color: #902e13
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-instagram {
			border-color: #1630aa
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-linkedin {
			border-color: #00344f
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-pinterest {
			border-color: #5b040e
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-reddit {
			border-color: #992900
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-rss {
			border-color: #a43b0a
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-sharethis {
			border-color: #5d8420
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-skype {
			border-color: #00658a
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-soundcloud {
			border-color: #995200
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-spotify {
			border-color: #0f612c
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-stackoverflow {
			border-color: #a95009
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-steam {
			border-color: #006388
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-user_email {
			border-color: #b84e05
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-stumbleUpon {
			border-color: #9b280e
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-tumblr {
			border-color: #10151b
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-twitter {
			border-color: #0967a0
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-vimeo {
			border-color: #0d7091
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-windows {
			border-color: #003f71
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-whatsapp {
			border-color: #003f71
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-wordpress {
			border-color: #0f3647
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-yahoo {
			border-color: #14002d
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-youtube {
			border-color: #900
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-xing {
			border-color: #000202
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-mixcloud {
			border-color: #2475a0
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-vk {
			border-color: #243549
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-medium {
			border-color: #00452c
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-quora {
			border-color: #420e00
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-meetup {
			border-color: #9b181c
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-goodreads {
			border-color: #000
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-snapchat {
			border-color: #999700
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-500px {
			border-color: #00557f
		}

		.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-mastodont {
			border-color: #185886
		}

		.sabox-plus-item {
			margin-bottom: 20px
		}

		@media screen and (max-width:480px) {
			.saboxplugin-wrap {
				text-align: center
			}

			.saboxplugin-wrap .saboxplugin-gravatar {
				float: none;
				padding: 20px 0;
				text-align: center;
				margin: 0 auto;
				display: block
			}

			.saboxplugin-wrap .saboxplugin-gravatar img {
				float: none;
				display: inline-block;
				display: -moz-inline-stack;
				vertical-align: middle;
				zoom: 1
			}

			.saboxplugin-wrap .saboxplugin-desc {
				margin: 0 10px 20px;
				text-align: center
			}

			.saboxplugin-wrap .saboxplugin-authorname {
				text-align: center;
				margin: 10px 0 20px
			}
		}

		body .saboxplugin-authorname a,
		body .saboxplugin-authorname a:hover {
			box-shadow: none;
			-webkit-box-shadow: none
		}

		a.sab-profile-edit {
			font-size: 16px !important;
			line-height: 1 !important
		}

		.sab-edit-settings a,
		a.sab-profile-edit {
			color: #0073aa !important;
			box-shadow: none !important;
			-webkit-box-shadow: none !important
		}

		.sab-edit-settings {
			margin-right: 15px;
			position: absolute;
			right: 0;
			z-index: 2;
			bottom: 10px;
			line-height: 20px
		}

		.sab-edit-settings i {
			margin-left: 5px
		}

		.saboxplugin-socials {
			line-height: 1 !important
		}

		.rtl .saboxplugin-wrap .saboxplugin-gravatar {
			float: right
		}

		.rtl .saboxplugin-wrap .saboxplugin-authorname {
			display: flex;
			align-items: center
		}

		.rtl .saboxplugin-wrap .saboxplugin-authorname .sab-profile-edit {
			margin-right: 10px
		}

		.rtl .sab-edit-settings {
			right: auto;
			left: 0
		}

		img.sab-custom-avatar {
			max-width: 75px;
		}

		.saboxplugin-wrap {
			border-width: 2px;
		}

		.saboxplugin-wrap {
			margin-top: 0px;
			margin-bottom: 0px;
			padding: 0px 4px
		}

		.saboxplugin-wrap .saboxplugin-authorname {
			font-size: 18px;
			line-height: 25px;
		}

		.saboxplugin-wrap .saboxplugin-desc p,
		.saboxplugin-wrap .saboxplugin-desc {
			font-size: 14px !important;
			line-height: 21px !important;
		}

		.saboxplugin-wrap .saboxplugin-web {
			font-size: 14px;
		}

		.saboxplugin-wrap .saboxplugin-socials a svg {
			width: 18px;
			height: 18px;
		}
	
		.wpcf7-form-control.wpcf7-submit.has-spinner.marketing {
			word-wrap: break-word;
			white-space: break-spaces;
			text-align: center;
			line-height: 22px !important;
		}


		.Cbanner {
			height: 600px !important;
		}

		.vc_row.wpb_row.section.vc_row-fluid.Cbanner.vc_custom_1707413359668 {
			background-position: top center !important;
		}

		.rebuild-banner {
			margin: auto;
			text-align: center;
			padding-left: 600px;
			padding-top: 80px;
		}

		.rebuild-banner h2 {
			color: #095aa5;
			font-size: 50px;
			font-family: 'Scope One', serif !important;
			font-weight: 400 !important;
		}

		.rebuild-banner p {
			color: #333333;
			font-size: 18px;
			font-family: 'Scope One', serif !important;
			font-weight: 400 !important;
		}


		.cta-button,
		.qode_button_v2,
		.button-slider {
			color: #ffffff !important;
			font-weight: 600 !important;
			text-decoration: none !important;
			padding: 12px 24px !important;
			font-size: 1rem !important;
			border: 2px solid #0073e6 !important;
			border-radius: 6px !important;
			margin: 10px 5px !important;
			display: inline-flex !important;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background-color: #007bff !important;
			transition: background-color 0.3s ease, transform 0.2s ease;
		}

		.cta-button:hover,
		.qode_button_v2:hover,
		.button-slider:hover {
			background-color: #0056b3 !important;
			color: #ffffff !important;
			transform: scale(1.05);
		}

		.cta-button i,
		.qode_button_v2 i,
		.button-slider i {
			font-size: 1.2rem;
			margin-left: 6px;
		}


		.hero-headline {
			color: #095AA5 !important;
			font-size: 3.25rem !important;
			line-height: 1.2 !important;
			font-weight: 700 !important;
			margin-bottom: 16px !important;
			text-align: center !important;
		}

		.hero-subtext {
			font-size: 2rem !important;
			line-height: 1.5 !important;
			color: #333 !important;
			font-weight: 500 !important;
			margin-top: 20px !important;
			margin-bottom: 20px !important;
			text-align: center !important;
			font-family: 'Open Sans', sans-serif !important;
		}


		.blue-section ul li {
			line-height: 1.8em;
			margin-bottom: 6px;
		}


		.equal-boxes-row .vc_column-inner,
		.equal-icon-boxes .vc_column-inner {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			height: 100%;
		}

		.equal-icon-boxes .vc_column-inner {
			padding-top: 10px;
		}

		.equal-icon-boxes .wpb_wrapper h1,
		.equal-icon-boxes .wpb_wrapper h2,
		.equal-icon-boxes .wpb_wrapper h3,
		.equal-icon-boxes .wpb_wrapper h4,
		.equal-icon-boxes .wpb_wrapper h5,
		.equal-icon-boxes .wpb_wrapper h6 {
			font-size: 1.35rem;
			font-weight: 700;
			line-height: 1.3;
			text-align: center;
			margin-bottom: 2px;
			min-height: 2.4em;
		}

		.equal-icon-boxes .wpb_wrapper p {
			font-size: 1.1rem;
			line-height: 1.5;
			margin: 4px auto 0 auto;
			max-width: 85%;
			color: #444;
			text-align: center;
		}


		@keyframes pulse {
			0% {
				transform: scale(1);
				box-shadow: 0 0 0 rgba(9, 90, 165, 0);
			}

			50% {
				transform: scale(1.12);
				box-shadow: 0 0 12px rgba(9, 90, 165, 0.35);
			}

			100% {
				transform: scale(1);
				box-shadow: 0 0 0 rgba(9, 90, 165, 0);
			}
		}

		.program-section .q_icon_with_text_inner {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			height: 100%;
			text-align: center;
			padding: 20px 10px;
			box-sizing: border-box;
			background: #fff;
		}

		.program-section .q_icon_with_text_text {
			flex-grow: 1;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			padding: 0;
			box-sizing: border-box;
			min-height: 250px;
		}

		.program-section .qbutton {
			margin-top: auto;
			margin-bottom: 0;
		}

		.program-section .q_icon_with_text_title_holder {
			margin-top: 10px;
			margin-bottom: 12px;
		}

		.program-section .wpb_column {
			padding-left: 10px !important;
			padding-right: 10px !important;
		}

		.program-section .q_icon_with_text_inner:hover .q_icon_with_text_icon_inner {
			animation: pulse 0.6s ease-in-out;
			border-radius: 50%;
		}

		.program-section .q_icon_with_text_icon_inner {
			transition: transform 0.2s ease;
		}


		.hero-content {
			max-width: 600px;
			margin: 0 auto;
			padding: 40px 20px;
			text-align: center;
		}


		@media screen and (max-width: 1024px) {
			.rebuild-banner {
				padding-left: unset;
			}

			.rebuild-banner h2 {
				font-size: 32px;
			}

			.hero-headline {
				font-size: 2.5rem;
			}

			.hero-subtext {
				font-size: 1.5rem;
			}
		}

		@media screen and (max-width: 768px) {
			.vc_row.wpb_row.section.vc_row-fluid.Cbanner.vc_custom_1707413359668 {
				background-position: left !important;
				box-shadow: inset 0 0 0 1000px rgb(255 255 255 / 68%);
			}

			.Cbanner {
				padding-top: 60px !important;
				padding-bottom: 160px !important;
				position: relative !important;
				z-index: 3 !important;
				text-align: center !important;
			}

			.rebuild-banner {
				padding: 0 20px !important;
				text-align: center !important;
				position: relative;
				z-index: 3;
			}

			.rebuild-banner h2 {
				font-weight: 700 !important;
				font-size: 2rem !important;
			}

			.rebuild-banner p {
				color: black;
				font-weight: 700 !important;
			}

			.hero-headline {
				font-size: 2rem !important;
				line-height: 1.2 !important;
				text-align: center !important;
			}

			.hero-subtext {
				font-size: 1.1rem !important;
				margin-top: 16px;
				text-align: center !important;
			}

			.button-slider {
				margin-top: 20px !important;
				margin-bottom: 0 !important;
				position: relative;
				z-index: 3;
			}

			.rebuild-banner .cta-button,
			.hero-section .cta-button {
				position: relative;
				z-index: 3;
			}

			.cta-button,
			.qode_button_v2,
			.button-slider {
				display: inline-flex !important;
				flex-wrap: wrap !important;
				align-items: center;
				justify-content: center;
				gap: 8px;
				width: 100% !important;
				max-width: 320px;
				white-space: normal !important;
				line-height: 1.3 !important;
				text-align: center !important;
			}

			.cta-button span,
			.qode_button_v2 span,
			.button-slider span {
				white-space: normal !important;
				overflow: visible !important;
				display: inline !important;
			}

			.program-section.vc_row {
				margin-top: 0 !important;
				padding-top: 0 !important;
				position: relative;
				z-index: 1;
			}

			.webociti-program-card {
				background: #ffffff;
				border: 1px solid #dce3ec;
				border-radius: 12px;
				padding: 32px 24px;
				text-align: center;
				box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
				transition: all .3s ease;
				position: relative;
			}

			.webociti-program-card:hover {
				transform: translateY(-5px);
				border-color: #2d8ee0;
				box-shadow: 0 8px 20px rgba(45, 142, 224, .15);
			}

			.webociti-program-card::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 4px;
				background: #2d8ee0;
				border-top-left-radius: 12px;
				border-top-right-radius: 12px;
				opacity: 0;
				transition: opacity .3s;
			}

			.webociti-program-card:hover::before {
				opacity: 1;
			}

			.webociti-program-card .wpb_wrapper i {
				font-size: 32px;
				color: #2d8ee0;
				margin-bottom: 16px;
			}

			.webociti-program-card h4 {
				font-size: 1.25rem;
				color: #003366;
				font-weight: 700;
				margin: 0 0 10px;
			}

			.webociti-program-card p {
				font-size: .95rem;
				color: #333;
				margin: 0;
			}

			.webociti-program-card a {
				display: inline-block;
				margin-top: 18px;
				font-weight: 600;
				color: #2d8ee0;
				text-decoration: none;
			}

			.webociti-program-card a:hover {
				text-decoration: underline;
			}

		}

		.webociti-program-card a:hover {
			color: #ff7a00;
			text-decoration: underline;
		}


		@media screen and (max-width: 768px) {
			.mobile-wrap-fix {
				white-space: normal !important;
				word-break: break-word !important;
				flex-wrap: wrap !important;
				text-align: center !important;
				font-size: 1rem !important;
				line-height: 1.4 !important;
				padding: 12px 16px !important;
				height: auto !important;
				max-width: 90vw !important;
				display: inline-flex !important;
				align-items: center;
				justify-content: center;
			}

			.mobile-wrap-fix span {
				width: 100% !important;
				text-align: center !important;
				display: block !important;
			}

			.mobile-wrap-fix i {
				font-size: 1rem !important;
				margin-left: 6px !important;
			}
		}

			.program-card {
				background: #fff;
				border: 1px solid #ddd;
				border-radius: 10px;
				padding: 30px 20px;
				box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
				text-align: center;
				transition: transform 0.3s ease, box-shadow 0.3s ease;
				position: relative;
				overflow: hidden;

				display: flex;
				flex-direction: column;
				justify-content: flex-start;
				min-height: 350px;
			}

			.program-card:hover {
				transform: translateY(-5px);
				box-shadow: 0 8px 20px rgba(9, 90, 165, 0.15);
			}

			.program-card::before {
				content: "";
				display: block;
				height: 4px;
				width: 100%;
				background: #095aa5;
				position: absolute;
				top: 0;
				left: 0;
				border-top-left-radius: 10px;
				border-top-right-radius: 10px;
			}

			.kickstarter-bar::before {
				background: #007bff;
			}

			.makeover-bar::before {
				background: #f57c00;
			}

			.accelerator-bar::before {
				background: #43a047;
			}

			.exitready-bar::before {
				background: #8e24aa;
			}

			.program-card i {
				font-size: 28px;
				margin-bottom: 10px;
				line-height: 1;
				display: inline-block;
			}

			.program-card h3 {
				font-size: 1.5rem;
				font-weight: 700;
				color: #095aa5;
				margin-top: 10px;
				margin-bottom: 10px;
			}

			.program-card p {
				flex-grow: 1;
				margin-bottom: 20px;
			}

			.program-card a {
				margin-top: auto;
				align-self: center;
			}


			@media (max-width: 768px) {
				.program-card {
					min-height: auto;
					padding: 20px 15px;
				}

				.program-card h3 {
					font-size: 1.25rem;
				}

				.program-card i {
					font-size: 24px;
				}

				.program-card a {
					margin-top: 16px;
				}
			}


			.wb-fade-in {
				opacity: 0;
				transform: translateY(20px);
				transition: opacity 0.6s ease-out, transform 0.6s ease-out;
			}

			.wb-fade-in.visible {
				opacity: 1;
				transform: translateY(0);
			}

			.wb-icon:hover {
				transform: scale(1.15);
				transition: transform 0.3s ease;
				color: #0056b3 !important;
			}

			.delay-1 {
				animation-delay: 0.2s !important;
			}

			.delay-2 {
				animation-delay: 0.4s !important;
			}

			.delay-3 {
				animation-delay: 0.6s !important;
			}

			.delay-4 {
				animation-delay: 0.8s !important;
			}

			div[style*="box-shadow"] {
				transition: all 0.3s ease;
			}

			div[style*="box-shadow"]:hover {
				transform: translateY(-5px);
				box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
			}

			.cta-wrapper {
				display: flex;
				justify-content: center;
				align-items: center;
				max-width: 100%;
				background: transparent !important;
				padding: 0;
				margin: 0 auto;
			}

			h2 {
				color: #004990;
				font-weight: 700;
			}


			h3,
			.section-subtitle {
				color: #222;
				font-weight: 600;
			}


			.cta-button {
				background-color: #004990;
				color: #fff;
				padding: 14px 28px;
				border-radius: 5px;
				text-decoration: none;
				font-weight: 600;
				display: inline-block;
			}


			.phase-box {
				background-color: #f7f9fb;
				padding: 30px;
				border-radius: 10px;
				text-align: left;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
				transition: transform 0.3s ease, box-shadow 0.3s ease;
				position: relative;
			}

			.phase-box:hover {
				transform: translateY(-5px);
				box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
			}

			.phase-box h3 {
				font-size: 1.25rem;
				color: #004990;
				font-weight: 700;
				margin-bottom: 12px;
			}

			.phase-box p {
				font-size: 1.0625rem;
				color: #444;
				line-height: 1.6;
			}


			.phase-number {
				display: inline-block;
				background: #004990;
				color: #fff;
				font-weight: 700;
				font-size: 0.875rem;
				width: 32px;
				height: 32px;
				line-height: 32px;
				text-align: center;
				border-radius: 50%;
				margin-right: 10px;
			}


			.webociti-final-cta {
				background: linear-gradient(to right, #004990, #0a6eb4);
				color: #fff;
				padding: 80px 20px;
				text-align: center;
			}

			.webociti-final-cta .cta-content {
				max-width: 720px;
				margin: 0 auto;
			}

			.webociti-final-cta h2 {
				font-size: 2rem;
				font-weight: 700;
				margin-bottom: 20px;
				color: #ffffff;
			}

			.webociti-final-cta p {
				font-size: 1.125rem;
				color: #f0f0f0;
				line-height: 1.6;
				margin-bottom: 30px;
			}

			.webociti-final-cta .cta-button {
				background-color: #ffffff;
				color: #004990;
				padding: 14px 28px;
				font-weight: 600;
				border-radius: 5px;
				text-decoration: none;
				display: inline-block;
			}


			.webociti-program-card {
				display: flex;
				flex-direction: column;
				justify-content: flex-start;
				align-items: center;
				height: 100%;
			}

			.webociti-card {
				background-color: #ffffff;
				border-radius: 10px;
				padding: 24px;
				box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
				transition: all 0.3s ease;
				flex: 1 1 250px;
				text-align: left;
			}

			.webociti-card:hover {
				box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
				transform: translateY(-4px);
			}

			.webociti-card i {
				font-size: 24px;
				color: #007bff;
				margin-bottom: 12px;
				display: inline-block;
			}

			.webociti-card h3 {
				font-size: 1.1rem;
				font-weight: 600;
				margin-bottom: 10px;
				color: #004990;
			}

			.webociti-card p {
				font-size: 0.95rem;
				color: #444;
			}

			.hero-content-wrap {
				display: flex;
				justify-content: center;
				align-items: center;
				padding: 80px 20px;
				text-align: center;
			}


			.webociti-program-card {
				background: #ffffff;
				border: 1px solid #dce3ec;
				border-radius: 12px;
				padding: 24px 20px;
				text-align: center;
				box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
				transition: all .3s ease;
				position: relative;
			}

			.webociti-program-card:hover {
				transform: translateY(-5px);
				border-color: #2d8ee0;
				box-shadow: 0 8px 20px rgba(45, 142, 224, .15);
			}

			.webociti-program-card a:hover {
				text-decoration: underline;
			}


			.webociti-program-card i {
				font-size: 32px;
				background: #e6f1fb;
				color: #2d8ee0;
				padding: 16px;
				border-radius: 12px;
				box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
				display: inline-block;
				margin-bottom: 16px;
			}


			.webociti-program-section {
				background: #f5f8fc;
				padding: 60px 0;
			}

			.webociti-program-card::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 4px;
				background: #2d8ee0;
				border-top-left-radius: 12px;
				border-top-right-radius: 12px;
				opacity: 0;
				transition: opacity .3s;
			}

			.webociti-program-card:hover::before {
				opacity: 1;
			}

			.webociti-program-card .wpb_wrapper i {
				font-size: 32px;
				color: #2d8ee0;
				margin-bottom: 10px;
			}

			.webociti-program-card h4 {
				font-size: 1.25rem;
				font-weight: 700;
				color: #003366;
				margin: 0 0 10px;
			}

			.webociti-program-card p {
				font-size: .95rem;
				color: #333;
				margin: 0;
			}

			.webociti-program-card a {
				display: inline-block;
				margin-top: 18px;
				font-weight: 600;
				color: #2d8ee0;
				text-decoration: none;
			}

			.webociti-program-card a:hover {
				text-decoration: underline;
			}


			.webociti-program-section {
				background: #f5f8fc;
			}
	
		.vc_custom_1750771039954 {
			padding-top: 110px !important;
			padding-bottom: 32px !important;
			padding-left: 400px !important;
			background-image: url({$theme_path}/static/picture/webociti_header.webp?id=4941) !important;
			background-position: center !important;
			background-repeat: no-repeat !important;
			background-size: cover !important;
		}

		.vc_custom_1750637136078 {
			padding-top: 60px !important;
			padding-bottom: 60px !important;
			background-color: #F8F9FC !important;
		}

		.vc_custom_1750605947666 {
			background-color: #F8F9FC !important;
		}

		.vc_custom_1750693770651 {
			padding-top: 80px !important;
			padding-bottom: 80px !important;
			background-color: #FFFFFF !important;
		}

		.vc_custom_1751408893148 {
			padding-top: 80px !important;
			padding-bottom: 30px !important;
			background-color: #F8F9FC !important;
		}

		.vc_custom_1750784061625 {
			border-bottom-width: 20px !important;
			padding-top: 80px !important;
			padding-bottom: 90px !important;
		}

		.vc_custom_1750778351736 {
			padding-top: 80px !important;
			padding-bottom: 60px !important;
		}

		.vc_custom_1750594661159 {
			padding-right: 140px !important;
			padding-left: 140px !important;
		}

		.vc_custom_1751829814840 {
			padding-top: 30px !important;
			padding-right: 40px !important;
			padding-bottom: 40px !important;
			padding-left: 400px !important;
		}

		.vc_custom_1751833489753 {
			background-color: #F4F8FC !important;
		}

		.vc_custom_1750640225948 {
			border-bottom-width: 60px !important;
		}

		.vc_custom_1751803803420 {
			padding-bottom: 60px !important;
		}

		.vc_custom_1750638372506 {
			margin-bottom: 20px !important;
			padding-bottom: 20px !important;
		}

		.vc_custom_1750637999178 {
			padding-bottom: 60px !important;
		}

		.vc_custom_1750636409344 {
			padding-bottom: 60px !important;
		}

		.vc_custom_1751817584809 {
			padding-top: 60px !important;
			padding-bottom: 30px !important;
		}

		.vc_custom_1750693435606 {
			padding-top: 60px !important;
			padding-bottom: 60px !important;
			background-color: #F8F9FC !important;
		}
	
	
		.wpb_animate_when_almost_visible {
			opacity: 1;
		}
	
	
		.service-boxes {
			display: flex;
			gap: 20px;
			justify-content: center;
			flex-wrap: wrap;
			text-align: center;
			margin-top: 40px;
			font-family: 'Segoe UI', Tahoma, sans-serif;
		}

		.service-box {
			flex: 1;
			min-width: 250px;
			max-width: 320px;
			padding: 24px;
			border: 1px solid #0073aa;
			border-radius: 12px;
			background: #fff;
			transition: all 0.3s ease;
			box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
		}

		.service-box:hover {
			transform: translateY(-5px);
			box-shadow: 0 8px 20px rgba(0, 115, 170, 0.2);
		}

		.service-box img {
			height: 60px;
			margin-bottom: 16px;
			transition: transform 0.4s ease;
		}

		.service-box:hover img {
			transform: translateY(-5px) scale(1.05);
		}

		.service-box h3 {
			font-size: 18px;
			margin: 8px 0;
			font-weight: 700;
			color: #004990;
		}

		.service-box p {
			font-size: 15px;
			color: #333;
			margin: 4px 0 20px;
			line-height: 1.5;
		}

		.service-box a {
			background-color: #f47b20;
			color: white;
			padding: 10px 16px;
			border-radius: 5px;
			text-decoration: none;
			font-weight: 600;
			display: inline-block;
			transition: background-color 0.3s ease;
		}

		.service-box a:hover {
			background-color: #d66413;
		}
	
	
		.pain-box {
			background: #f8f9fa;
			padding: 16px 18px;
			border-radius: 8px;
			transition: all 0.3s ease;
			position: relative;
			font-size: 0.95rem;
			line-height: 1.4;
		}

		.pain-box:hover {
			background-color: #e9f1ff;
			box-shadow: 0 2px 10px rgba(0, 86, 214, 0.08);
		}

		.pain-icon {
			color: #093a74;
			font-size: 1.25rem;
			margin-right: 8px;
			vertical-align: middle;
		}

		.pain-box i {
			margin-bottom: 6px;
			display: inline-block;
		}
	
	
		.webociti-step-box {
			border: 1px solid #ddd;
			padding: 20px;
			border-radius: 10px;
			transition: all 0.3s ease;
			background-color: white;
		}

		.webociti-step-box:hover {
			transform: translateY(-5px) scale(1.02);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
			border-color: #fcb900;
		}
	
	
		@keyframes bounceFadeIn {
			0% {
				opacity: 0;
				transform: scale(0.8) translateY(20px);
			}

			60% {
				opacity: 1;
				transform: scale(1.05) translateY(-5px);
			}

			100% {
				transform: scale(1) translateY(0);
			}
		}

		a[href*="oncehub"]:hover {
			background-color: #e0a800 !important;
			transform: scale(1.05);
		}
	
	
		.faq-item {
			margin-bottom: 16px;
			padding-bottom: 10px;
			border-bottom: 1px solid #ccc;
			transition: all 0.3s ease;
		}

		.faq-item summary {
			font-weight: bold;
			font-size: 1.1rem;
			cursor: pointer;
			display: flex;
			align-items: center;
			gap: 8px;
			color: #004990;
		}

		.faq-item summary i {
			color: #2d8ee0;
			font-size: 18px;
		}

		.faq-item p {
			margin-top: 10px;
			font-size: 1rem;
			color: #444;
			line-height: 1.6;
		}
	