/*!/wp-content/plugins/wp-polls/css/wp-polls.css*/
/**
 * WP-Polls front end.
 *
 * Everything is scoped under the .wp-polls root class the plugin puts on the
 * outermost element of every block it renders, and nothing here sets a font or
 * a text colour: a poll is part of the page it sits in, so it inherits.
 *
 * The custom properties are the supported way to restyle a poll. Set them in
 * your own stylesheet rather than copying this file into your theme, and an
 * upgrade cannot take your changes away:
 *
 *   --wp-polls-bar-height        height of the result bar
 *   --wp-polls-bar-background    its fill colour
 *   --wp-polls-bar-border        its border colour
 *   --wp-polls-bar-image         a background-image layered over the fill
 *   --wp-polls-bar-radius        its corner radius
 *   --wp-polls-border            colour of the button and paging borders
 *   --wp-polls-surface           background of the vote button
 *
 * The fallback after each var() is what the settings screen ships with, so a
 * poll still renders if the inline block carrying the settings is filtered out.
 */

/* Poll answers. The list markers are cleared because a poll is a form, not
   prose, and themes commonly style li::before in a way that lands in the
   middle of an answer. */
.wp-polls ul,
.wp-polls-ul,
.wp-polls-ans ul {
	text-align: start;
	list-style: none;
	float: none;
}
.wp-polls ul li,
.wp-polls-ul li,
.wp-polls-ans ul li {
	text-align: start;
	background-image: none;
	display: block;
}
.wp-polls ul li::before,
.wp-polls-ans ul li::before {
	content: '';
}
/* The answer text sits beside its control rather than under it. A theme that
   makes every label a block would otherwise put each answer on its own line,
   below the radio it belongs to. */
.wp-polls label {
	display: inline;
}

/* The controls themselves are the theme's business.
 *
 * This rule used to reset display, border, padding and margin on every input
 * inside a poll, which breaks any theme that draws its own radio -- and the
 * bundled ones all do. With appearance: none an input is a non-replaced inline
 * box, and width and height do not apply to those, so display: inline threw
 * away the size the theme had set; border: 0 then erased the ring it drew the
 * circle with. Twenty Twenty-One's 25px circles came out as 6px slivers,
 * stretched to the line height.
 *
 * Nothing here needed that reset. The vote button carries its own border and
 * background a few rules down, and the list chrome is neutralised above. All
 * the poll actually wants is a gap between a control and the words next to it. */
.wp-polls input[type="radio"],
.wp-polls input[type="checkbox"] {
	margin-inline-end: 0.4em;
}
.wp-polls-ul {
	padding: 0;
	margin-block: 0 10px;
	margin-inline: 10px 0;
}
.wp-polls-ans {
	width: 100%;
}

/* The AJAX placeholder, hidden until a request is in flight. */
.wp-polls-loading {
	display: none;
	text-align: center;
}
/* The loading indicator. Drawn rather than shipped as a GIF: it inherits the
   theme's colour through currentColor, scales with the surrounding font size,
   and costs no request. The ring is three-quarters of a circle - one border
   side is transparent - spun by a transform. */
.wp-polls .wp-polls-spinner {
	display: inline-block;
	box-sizing: border-box;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	border: 2px solid currentColor;
	border-inline-end-color: transparent;
	border-radius: 50%;
	animation: wp-polls-spin 0.8s linear infinite;
}
@keyframes wp-polls-spin {
	to {
		transform: rotate(360deg);
	}
}
/* Still legible, just not moving: the ring stays as a dimmed circle so the
   placeholder does not turn into an unexplained gap beside the word. */
@media (prefers-reduced-motion: reduce) {
	.wp-polls .wp-polls-spinner {
		animation: none;
		border-inline-end-color: currentColor;
		opacity: 0.4;
	}
}

/* The result bar: a track holding a fill, so a unanimous answer can render at
   a true 100% without its own border overflowing the track. */
.wp-polls .wp-polls-bar {
	box-sizing: border-box;
	width: 100%;
	height: var(--wp-polls-bar-height, 8px);
	margin-block: 2px;
	overflow: hidden;
	border: 1px solid var(--wp-polls-bar-border, #c8c8c8);
	border-radius: var(--wp-polls-bar-radius, 3px);
}
.wp-polls .wp-polls-bar-fill {
	height: 100%;
	border-radius: inherit;
	background-color: var(--wp-polls-bar-background, #d8e1eb);
	background-image: var(--wp-polls-bar-image, none);
	/* The width arrives inline, so there is no state change for a transition to
	   pick up. Scaling in from zero animates the same thing without needing to
	   know the target width in the stylesheet. */
	transform-origin: left center;
	animation: wp-polls-bar-grow 0.45s ease-out;
}
/* transform-origin has no logical keywords - the property predates them and
   Transforms Level 2 still only takes left/right - so this one direction rule
   is written out rather than avoided. */
[dir="rtl"] .wp-polls .wp-polls-bar-fill {
	transform-origin: right center;
}
@keyframes wp-polls-bar-grow {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}
@media (prefers-reduced-motion: reduce) {
	.wp-polls .wp-polls-bar-fill {
		animation: none;
	}
}

/* The vote button. Both colours are properties rather than fixed values, and
   both fall back to something derived from the text colour, so the button is
   still visible on a theme that paints a dark background. The padding replaces
   the three literal spaces the template's value attribute used to carry. */
.wp-polls .Buttons {
	border: 1px solid var(--wp-polls-border, currentColor);
	background-color: var(--wp-polls-surface, transparent);
	color: inherit;
	padding: var(--wp-polls-button-padding, 0.25em 1.25em);
}

/* Polls archive paging. currentColor throughout: the page decides what colour
   text is, and these are links in that text. */
.wp-polls-paging a,
.wp-polls-paging span {
	padding: 2px 4px;
	margin: 2px;
	border: 1px solid var(--wp-polls-border, currentColor);
	color: inherit;
}
.wp-polls-paging a {
	text-decoration: none;
}
.wp-polls-paging a:hover,
.wp-polls-paging a:focus {
	text-decoration: underline;
}
.wp-polls-paging span.current {
	font-weight: bold;
}
/* [inline: after] */.wp-polls {
	--wp-polls-bar-height: 8px;
	--wp-polls-bar-background: #fbc730;
	--wp-polls-bar-border: #fbc730;
	--wp-polls-bar-image: none;
}

/* [/inline: after] */
/*!/wp-content/plugins/better-search/includes/frontend/css/bsearch-styles.min.css*/
.bsearch_results_page{max-width:90%;margin:20px;padding:20px}.bsearch_thumb_wrapper img{max-width:100%}.bsearch-form-container{text-align:center;margin:10px auto;clear:both}.bsearchform{display:flex;flex-wrap:wrap;flex-direction:row;flex-flow:row wrap;justify-content:space-between;gap:10px}.bsearchform .bsearch-form-search-field{flex:auto}.bsearchform input[type=search],.bsearchform select{background-color:#fff;border:thin solid #999;display:inline-block;font:inherit;line-height:1.5em;padding:.5em 3.5em .5em 1em;width:100%;height:100%}.bsearchform select{background-image:linear-gradient(45deg,transparent 50%,gray 50%),linear-gradient(135deg,gray 50%,transparent 50%),linear-gradient(to right,#ccc,#ccc);background-position:calc(100% - 20px) calc(1em + 2px),calc(100% - 15px) calc(1em + 2px),calc(100% - 2.5em) .5em;background-size:5px 5px,5px 5px,1px 1.5em;background-repeat:no-repeat;margin:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;appearance:none;-webkit-appearance:none;-moz-appearance:none}.bsearch_footer{text-align:center}.bsearch_highlight{background:#ffc;color:#000}.bsearch-post{margin:30px auto}ul.bsearch_post_meta{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap}ul.bsearch_post_meta li{flex:auto;list-style-type:none;padding:2px;margin:0;text-align:left}.bsearch-entry-title{text-align:left}@media all and (max-width:600px){.bsearchform,ul.bsearch_post_meta{flex-direction:column}}
/*!/wp-content/cache/asset-cleanup/css/item/content__uploads__omgf__et-divi-open-sans__et-divi-open-sans-css-v91b8031fe519ebb04a67de8e9782d0fdf3891985.css*/
/*!/wp-content/uploads/omgf/et-divi-open-sans/et-divi-open-sans.css*/@font-face{font-family:'Open Sans';font-style:italic;font-weight:300;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:italic;font-weight:400;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:italic;font-weight:600;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:italic;font-weight:700;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:italic;font-weight:800;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Open Sans';font-style:normal;font-weight:800;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-divi-open-sans/open-sans-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
/*!/wp-content/cache/asset-cleanup/css/item/content__uploads__omgf__et-builder-googlefonts-cached__et-builder-googlefonts-cached-css-veb28f0448c15996903eefdca122484ac1c51ff95.css*/
/*!/wp-content/uploads/omgf/et-builder-googlefonts-cached/et-builder-googlefonts-cached.css*/@font-face{font-family:'Playfair Display';font-style:italic;font-weight:400;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:italic;font-weight:500;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:italic;font-weight:600;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:italic;font-weight:700;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:italic;font-weight:800;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:italic;font-weight:900;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-italic-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:500;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:700;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:800;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:900;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/playfair-display-normal-latin.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:100;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-100.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:200;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-200.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:300;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-300.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:400;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-400.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:500;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-500.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:600;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-600.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:700;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-700.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:800;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-800.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:italic;font-weight:900;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-italic-latin-900.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:100;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-100.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:200;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-200.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:300;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-300.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-400.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-500.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-600.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-700.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:800;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-800.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Poppins';font-style:normal;font-weight:900;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/poppins-normal-latin-900.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:100;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-100.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:200;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-200.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:300;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-300.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-400.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:500;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-500.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:600;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-600.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-700.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:800;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-800.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Saira Extra Condensed';font-style:normal;font-weight:900;font-display:swap;src:url(//globaladvisors.biz/wp-content/uploads/omgf/et-builder-googlefonts-cached/saira-extra-condensed-normal-latin-900.woff2?ver=1763827186)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
/*!/wp-content/cache/asset-cleanup/css/item/divi-child__style-css-v359ec1857486d1cb12d367b77052e7d3bdfe1c41.css*/
/*!/wp-content/themes/Divi-Child/style.css*/#et-boc .et_pb_row_0_tb_body{width:min(96%, 1440px)!important;max-width:1440px!important;margin-left:auto!important;margin-right:auto!important}@media (max-width:767px){#et-boc .et_pb_row_0_tb_body{width:calc(100% - 24px)!important}}@media (min-width:981px){#top-menu>li:nth-last-child(-n+2)>ul.sub-menu{left:auto!important;right:0!important}#top-menu>li:nth-last-child(-n+2) li.menu-item-has-children>ul.sub-menu{left:auto!important;right:240px!important}#top-menu>li>ul.sub-menu,#et-secondary-nav>li>ul.sub-menu{max-height:none;overflow:visible}#top-menu ul.sub-menu:not(:has(li.menu-item-has-children)),#et-secondary-nav ul.sub-menu:not(:has(li.menu-item-has-children)){max-height:calc(100vh - 130px);overflow-y:auto;overflow-x:hidden;scrollbar-width:thin}}