@charset "UTF-8";
/**
 * Remove top margin from first child and bottom margin from last child.
 */
/*! tailwindcss v2.2.0 | MIT License | https://tailwindcss.com
 */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
	box-sizing: border-box;
}
/**
Use a more readable tab size (opinionated).
*/
html {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	   tab-size: 4;
}
/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}
/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
	margin: 0;
}
/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
	font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}
/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}
/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}
/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
	font-weight: bolder;
}
/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}
/**
Add the correct font size in all browsers.
*/
small {
	font-size: 80%;
}
/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}
/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}
/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
	text-transform: none;
}
/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}
/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
	outline: 1px dotted ButtonText;
}
/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
	box-shadow: none;
}
/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
	padding: 0;
}
/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
	vertical-align: baseline;
}
/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}
/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}
/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
	-webkit-appearance: none;
}
/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}
/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
	display: list-item;
}
/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */
/**
 * Removes the default spacing and border for appropriate elements.
 */
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
button {
  background-color: transparent;
  background-image: none;
}
/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
fieldset {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/**
 * Tailwind custom reset styles
 */
/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */
html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}
/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */
body {
  font-family: inherit;
  line-height: inherit;
}
/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
/*
 * Ensure horizontal rules are visible by default
 */
hr {
  border-top-width: 1px;
}
/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */
img {
  border-style: solid;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
button,
[role="button"] {
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */
a {
  color: inherit;
  text-decoration: inherit;
}
/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}
/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */
pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
video {
  max-width: 100%;
  height: auto;
}
*, ::before, ::after{
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--tw-shadow: 0 0 #0000;
	--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
	--tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
	--tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
html{
	font-family: "sofia-pro", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}
@media (min-width: 768px) {}

.slides h2{
	--tw-text-opacity: 1 !important;
	color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.site {
  position: relative;
}
.content-container p, .content-container ul, .content-container ol, .content-container li, .content-container .vc_row li, .content-container .vc_row ol{
	font-size: 1rem !important;
	line-height: 1.5rem !important;
	line-height: 2rem !important;
}
.content-container p, .content-container ul, .content-container ol{
	margin-bottom: 0.75rem !important;
}
.content-container ul{
	list-style-position: inside;
	list-style-type: disc;
}
.content-container ol{
	list-style-position: inside;
	list-style-type: decimal;
}

h2, .h2, h3, .h3, h4, .h4, h5, .h5, .title, .subtitle{
	font-family: "sofia-pro", sans-serif;
	font-weight: 700;
}

h1, .h1{
	font-family: "sofia-pro", sans-serif;
	font-weight: 900;
	--tw-text-opacity: 1;
	color: rgba(0, 46, 115, var(--tw-text-opacity));
}

h2, .h2{
	font-family: "sofia-pro", serif;
	font-weight: 300;
	--tw-text-opacity: 1;
	color: rgba(0, 46, 115, var(--tw-text-opacity));
}

.fit-content {
  max-width: -webkit-fit-content !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}
.fit-content * {
  max-width: -webkit-fit-content !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

h1, .h1{
	margin-bottom: 0.75rem !important;
	font-size: 2.25rem !important;
	line-height: 2.5rem !important;
}

@media (min-width: 1280px){
	h1, .h1{
		font-size: 3rem !important;
		line-height: 1 !important;
	}
}
h1.xl, .h1.xl{
	font-size: 3rem !important;
	line-height: 1 !important;
}
@media (min-width: 1280px){
	h1.xl, .h1.xl{
		font-size: 3.48rem !important;
	}
}

h2, .h2{
	margin-bottom: 0.75rem !important;
	font-size: 1.875rem !important;
	line-height: 2.25rem !important;
	font-weight: 700 !important;
}

@media (min-width: 1280px){
	h2, .h2{
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}
}

.title{
	margin-bottom: 0.75rem !important;
	font-size: 1.5rem !important;
	line-height: 2rem !important;
	font-weight: 700 !important;
}

@media (min-width: 1280px){
	.title{
		font-size: 1.875rem !important;
		line-height: 2.25rem !important;
	}
}

.subtitle{
	margin-bottom: 0.75rem !important;
	font-size: 1.25rem !important;
	line-height: 1.75rem !important;
	font-weight: 700 !important;
}

@media (min-width: 1280px){
	.subtitle{
		font-size: 1.5rem !important;
		line-height: 2rem !important;
	}
}

h3, .h3{
	margin-bottom: 0.75rem !important;
	font-size: 1.5rem !important;
	line-height: 2rem !important;
	font-weight: 700 !important;
}

@media (min-width: 1280px){
	h3, .h3{
		font-size: 1.875rem !important;
		line-height: 2.25rem !important;
	}
}

h4, .h4{
	margin-bottom: 0.75rem !important;
	font-size: 1.25rem !important;
	line-height: 1.75rem !important;
	font-weight: 700 !important;
}

@media (min-width: 1280px){
	h4, .h4{
		font-size: 1.5rem !important;
		line-height: 2rem !important;
	}
}

h5, .h5{
	margin-bottom: 0.75rem !important;
	font-size: 1.25rem !important;
	line-height: 1.75rem !important;
	font-weight: 700 !important;
}

p{
	font-family: "sofia-pro", sans-serif !important;
	font-weight: 300 !important;
}

.vc_row ul {
  margin-left: 20px;
  list-style: outside;
}

.vc_row.vc_row-o-equal-height > .vc_column_container.items-center{
	align-items: center !important;
}

.button-bg-color .flexslider, .four_box_slider .flexslider {
  background: transparent;
  border: 4px solid transparent;
  margin: 0 0 35px;
}
.button-bg-color .wpb_posts_slider .flex-caption, .four_box_slider .wpb_posts_slider .flex-caption {
  background: transparent;
  color: white;
  padding: 0px 47px;
}
.button-bg-color .flex-control-paging li a, .four_box_slider .flex-control-paging li a {
  width: 18px;
  height: 18px;
}
.button-bg-color .flex-control-paging li a.flex-active, .four_box_slider .flex-control-paging li a.flex-active {
  background: #fff;
}
.button-bg-color .flex-direction-nav a, .button-bg-color .flex-direction-nav a:before, .four_box_slider .flex-direction-nav a, .four_box_slider .flex-direction-nav a:before {
  color: rgba(255, 255, 255, 0.8);
}
.button-bg-color .flexslider:hover .flex-direction-nav .flex-prev, .four_box_slider .flexslider:hover .flex-direction-nav .flex-prev {
  left: 0;
}
.button-bg-color .flexslider:hover .flex-direction-nav .flex-next, .four_box_slider .flexslider:hover .flex-direction-nav .flex-next {
  right: 0;
}

.lineimage {
  max-width: initial !important;
}

#menu-primary-menu, #menu-bottom-menu{
	display: flex;
	flex-direction: column;
	gap: 21px;
	border-top-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1280px){
	#menu-primary-menu, #menu-bottom-menu{
		flex-direction: row;
	}
	#menu-primary-menu, #menu-bottom-menu{
		border-width: 0px;
	}
	#menu-primary-menu, #menu-bottom-menu{
		background-color: transparent;
	}
}
#menu-primary-menu > li, #menu-bottom-menu > li{
	position: relative;
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
@media (min-width: 1280px){
	#menu-primary-menu > li, #menu-bottom-menu > li{
		border-width: 0px;
	}
	#menu-primary-menu > li, #menu-bottom-menu > li{
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}
#menu-primary-menu > li > a, #menu-bottom-menu > li > a{
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
	border-radius: 0.25rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-family: "sofia-pro", sans-serif;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 400;
	line-height: 1.5;
}
@media (min-width: 1280px){
	#menu-primary-menu > li > a, #menu-bottom-menu > li > a{
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}
}
@media (min-width: 1536px){
	#menu-primary-menu > li > a, #menu-bottom-menu > li > a{
		font-size: 17px;
	}
}
#menu-primary-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu{
	display: none;
	max-height: 190px;
	width: 450px;
	flex-direction: column;
	flex-wrap: wrap;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
@media (min-width: 1280px){
	#menu-primary-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu{
		position: absolute;
	}
	#menu-primary-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu{
		margin-top: 1.25rem;
	}
}
#menu-primary-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
#menu-primary-menu > li .sub-menu li:not(.submenu-button):not(.alt-submenu-button):not(.tertiary-submenu-button) a, #menu-bottom-menu > li .sub-menu li:not(.submenu-button):not(.alt-submenu-button):not(.tertiary-submenu-button) a{
	display: block;
	white-space: nowrap;
	font-family: "sofia-pro", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 27px;
	--tw-text-opacity: 1;
	color: rgba(88, 88, 88, var(--tw-text-opacity));
}
#menu-primary-menu > li.button, #menu-bottom-menu > li.button{
	position: relative;
}
@media (min-width: 1280px){
	#menu-primary-menu > li.button, #menu-bottom-menu > li.button{
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}
}
#menu-primary-menu > li.button > a, #menu-bottom-menu > li.button > a{
	margin-left: 2rem;
	margin-right: 2rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	white-space: nowrap;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 1280px){
	#menu-primary-menu > li.button > a, #menu-bottom-menu > li.button > a{
		margin-left: 0px;
		margin-right: 0px;
	}
	#menu-primary-menu > li.button > a, #menu-bottom-menu > li.button > a{
		margin-top: 0px;
		margin-bottom: 0px;
	}
}
#menu-primary-menu > li.button > a, #menu-bottom-menu > li.button > a {
  /*&:after {
    //display: none;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    content: "\f358";
    margin-left: 8px;
    font-size: 20px;
  }*/
}
#menu-primary-menu > li.button > a:before, #menu-bottom-menu > li.button > a:before{
	bottom: -0.5rem !important;
	right: 1.5rem !important;
}
#menu-primary-menu > li.button > a svg, #menu-bottom-menu > li.button > a svg{
	margin-left: 0.5rem;
	width: 1.25rem;
}
#menu-primary-menu > li.button .sub-menu, #menu-bottom-menu > li.button .sub-menu{
	margin-top: 1.5rem;
	width: 100%;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.75rem;
	padding-left: 2rem;
	padding-right: 2rem;
}
@media (min-width: 1280px){
	#menu-primary-menu > li.button .sub-menu, #menu-bottom-menu > li.button .sub-menu{
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
}
#menu-primary-menu > li.button .sub-menu a, #menu-bottom-menu > li.button .sub-menu a{
	display: block;
	white-space: nowrap;
	border-radius: 0.25rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-family: "sofia-pro", sans-serif;
	font-size: 1.25rem;
	line-height: 1.75rem;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 1280px){
	#menu-primary-menu > li.button .sub-menu a, #menu-bottom-menu > li.button .sub-menu a{
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
}
#menu-primary-menu > li.button .sub-menu a:hover, #menu-bottom-menu > li.button .sub-menu a:hover{
	opacity: 0.9;
}
#menu-primary-menu > li.button .support a, #menu-primary-menu > li.button .login a, #menu-bottom-menu > li.button .support a, #menu-bottom-menu > li.button .login a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#menu-primary-menu > li.button .support a:after, #menu-primary-menu > li.button .login a:after, #menu-bottom-menu > li.button .support a:after, #menu-bottom-menu > li.button .login a:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 20px;
}
#menu-primary-menu > li.button .support a:after, #menu-bottom-menu > li.button .support a:after {
  content: "\F1CD";
}
#menu-primary-menu > li.button .login a:after, #menu-bottom-menu > li.button .login a:after {
  font-weight: 300;
  content: "\F2C2";
}
#menu-primary-menu > li.active .sub-menu, #menu-bottom-menu > li.active .sub-menu{
	display: flex;
	flex-direction: column;
}
#menu-primary-menu > li.menu-item-has-children > a:after, #menu-bottom-menu > li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\F055";
  margin-left: 5px;
  font-size: 18px;
  transition: all 300ms 0s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu-primary-menu > li.menu-item-has-children > a:before, #menu-bottom-menu > li.menu-item-has-children > a:before {
  content: "";
  transform: rotate(45deg);
  bottom: -5px;
  right: 3rem;
  height: 20px;
  width: 20px;
  z-index: 2;
  position: absolute;
  display: none;
  --tw-bg-opacity: 1;
  background-color: rgba(246, 246, 246, var(--tw-bg-opacity));
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
#menu-primary-menu > li.menu-item-has-children > a svg, #menu-bottom-menu > li.menu-item-has-children > a svg{
	margin-left: 0.5rem;
	width: 1.25rem;
}
@media (min-width: 1280px){
	#menu-primary-menu > li.menu-item-has-children:hover > a:before, #menu-bottom-menu > li.menu-item-has-children:hover > a:before{
		display: block;
	}
}
#menu-primary-menu > li.menu-item-has-children:hover > a:after, #menu-bottom-menu > li.menu-item-has-children:hover > a:after{
	--tw-rotate: 180deg;
	transform: var(--tw-transform);
}

.mobile-child-submenu a{
	padding-bottom: 25px;
}

#menu-bottom-menu {
  background-color: rgba(255, 255, 255, 0);
}
#menu-bottom-menu > li > a{
	font-size: 1.25rem !important;
	line-height: 1.75rem !important;
}
@media (min-width: 1536px){
	#menu-bottom-menu > li > a{
		font-size: 1.25rem !important;
		line-height: 1.75rem !important;
	}
}
@media (min-width: 1024px){
	#menu-bottom-menu > li > a{
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
@media (min-width: 1280px){
	#menu-bottom-menu > li > a{
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.mobsticky {
  position: sticky !important;
}

.menu-primary-menu-container{
	width: 100%;
}

@media (min-width: 1280px){
	.menu-primary-menu-container{
		width: auto;
	}
}

#site-details .item{
	cursor: pointer;
}
#site-details .item .details{
	position: fixed;
	top: 3.5rem;
	right: 0.25rem;
	z-index: 50;
	width: 100%;
	max-width: 480px;
	transform-origin: top;
	--tw-scale-x: 0;
	--tw-scale-y: 0;
	transform: var(--tw-transform);
	gap: 1.5rem;
	border-radius: 0.25rem;
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-bottom: 2rem;
	opacity: 0;
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
#site-details .item .details .image {
  flex: 0 0 137px;
}
#site-details .item .details .triangle{
	position: absolute;
	top: 0.25rem;
	height: 1rem;
	width: 1rem;
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
	transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
#site-details .item .details .triangle.active{
	top: -0.5rem;
}
#site-details .item.active .details{
	z-index: 20;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	transform: var(--tw-transform);
	opacity: 1;
}

#login-details {
  border-top: 1px solid #e6f6f6;
}
#login-details .login-details-btn {
  border-bottom: 1px solid #297eab;
}
#login-details .login-details-btn:last-child {
  border: 0;
}
#login-details .login-details-btn a {
  width: 210px;
  margin: 0 !important;
}
#login-details .login-details-btn a i {
  margin-left: 15px;
}
#login-details.active .details{
	z-index: 20;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	transform: var(--tw-transform);
	opacity: 1;
}

#menu-bottom-menu > li, #menu-footer > li {
  display: flex;
  align-items: center;
}
#menu-bottom-menu > li:after, #menu-footer > li:after{
	font-family: "sofia-pro", sans-serif;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
  content: " | ";
}
#menu-bottom-menu > li:last-child:after, #menu-footer > li:last-child:after {
  display: none;
}

#menu-footer > li:after{
	font-family: "Open Sans", sans-serif;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
}
#menu-footer > li > a{
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

#menu-primary-menu, #menu-bottom-menu, #menu-footer{
	position: relative;
  z-index: 11;
}
@media (min-width: 1280px){
	#menu-primary-menu > li:first-child a, #menu-bottom-menu > li:first-child a, #menu-footer > li:first-child a{
		padding-left: 0px;
	}
}

.pagination{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding-top: 3rem;
}

.pagination .page-numbers.next, .pagination .page-numbers.prev{
	width: auto;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.pagination .page-numbers{
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	display: flex;
	height: 2.5rem;
	width: 2.5rem;
	align-items: center;
	justify-content: center;
	--tw-bg-opacity: 1;
	background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.pagination .page-numbers.current{
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.admin-bar #site-details .item .details {
  margin-top: 32px;
}
.admin-bar .sticky, .admin-bar .lg\:sticky {
  top: 32px;
}

.vc_mobile .admin-bar #site-details, .vc_mobile .admin-bar #login-details {
  margin-top: 46px;
}
.vc_mobile .admin-bar #site-details .item .details {
  margin-top: 46px;
}
.vc_mobile .admin-bar .sticky {
  top: 46px;
}

.rotate-slider {
  /* overflow: hidden; */
  position: relative;
}

#slide-content {
  --s:340px;
  /*Size of the circle */
  height: var(--s);
  width: var(--s);
}

.rotate-slider * {
  box-sizing: content-box;
}

.rotate-slider ul {
  list-style: none;
}

.rotate-slider ul.slides {
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  top: 0;
  left: 50%;
  transform-origin: center center;
  width: 100%;
}

.rotate-slider ul.slides.animate {
  transition: all 0.75s ease-in-out;
}

.rotate-slider ul.slides li {
  cursor: pointer;
  background-position: center;
  background-size: cover;
  display: block;
  list-style: none;
  position: absolute;
  top: 0;
  left: 50%;
  text-align: center;
  transform-origin: bottom center;
  width: 100%;
}
.rotate-slider ul.slides li:after {
  content: url("../../assets/img/arrow.svg");
  display: inline-block;
  width: 40px;
  height: 33px;
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
}
.rotate-slider ul.slides li.active:after {
  content: url("../../assets/img/arrow-active.svg");
}

.rotate-slider ul.slides li .inner {
  margin-top: 20px;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  border: 15px solid #cbdbe1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rotate-slider ul.slides li.active .inner {
  border: 15px solid #0a3c5e;
}

.rotate-slider ul.slides li:not(.active):hover .inner {
  border: 15px solid #99b6c1;
}

.rotate-slider ul.nav {
  position: absolute;
  top: 470px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.rotate-slider ul.nav li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d5d5d5;
  margin: 3px;
  cursor: pointer;
}

.rotate-slider ul.nav li.active {
  background: #0a3c5e;
}

.rotate-slider h3,
.rotate-slider .h3 {
  font-size: 26px !important;
  font-weight: bold;
  color: #0a3c5e;
  margin-bottom: 10px;
}

.vc_mobile .mobile-height {
  height: 620px;
}

.wpb_gallery > .wpb_wrapper {
  display: flex;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.ginput_container .gfield_checkbox {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 480px) {
  .ginput_container .gfield_checkbox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .ginput_container .gfield_checkbox > * {
    flex: 0 1 50%;
  }
}
@media screen and (min-width: 992px) {
  .ginput_container .gfield_checkbox > * {
    flex: 0 1 50%;
  }
}

@media screen and (min-width: 480px) {
  .option-checkboxes .ginput_container .gfield_checkbox .gchoice {
    width: 50%;
  }
}

.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
  display: flex;
  justify-content: space-between;
}

.gform_wrapper.gravity-theme .gform_previous_button.button, .gform_wrapper.gravity-theme .gform_save_link.button {
  background-color: transparent !important;
  color: inherit !important;
  text-decoration: none;
  -webkit-appearance: none !important;
}

.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input, .gform_wrapper.gravity-theme .gform_page_footer button, .gform_wrapper.gravity-theme .gform_page_footer input {
  margin: 0 !important;
}

input[type=submit i], input[type=button i] {
  background-color: transparent !important;
}

.gform_confirmation_wrapper {
  padding: 1rem !important;
  border: 3px solid green;
  margin: 0 0 1rem;
}

.gfield_consent_label {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.gfield p {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.gform_wrapper.gravity-theme .gfield-choice-input {
  vertical-align: text-top !important;
  position: relative;
  top: 8px;
}

.gform_wrapper.gravity-theme .gfield-choice-input + label {
  vertical-align: text-top !important;
}

@media (min-width: 1024px) {
  .blog-post {
    max-width: 665px;
  }
}

.grid-item {
  width: 320px;
}
@media (min-width: 1024px) {
  .grid-item {
    width: 300px;
  }
}
@media (min-width: 1280px) {
  .grid-item {
    width: 350px;
  }
}

.filter-button-group a {
  cursor: pointer;
}
.filter-button-group a:not(.is-checked) {
  opacity: 0.7;
}

#post-sidebar {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  #post-sidebar {
    width: 350px;
  }
}
#post-sidebar-categories ul li {
  border-top: 1px solid #a9bbc7;
}
#post-sidebar-categories ul li a {
  padding: 7px 0;
  margin: 0 !important;
}
#post-sidebar .bg-resources {
  background: #f0f7f9;
}
#post-sidebar #pp-job-interest-form input, #post-sidebar #pp-job-interest-form select {
  background: #edf5f8;
}
#post-sidebar #pp-job-interest-form h2 {
  font-size: 1rem !important;
  line-height: 1rem !important;
}
#post-sidebar #pp-job-interest-form .validation_message {
  padding: 5px 0px !important;
  font-size: 11px !important;
  background: none !important;
  border: 0 !important;
}
#post-sidebar #pp-job-interest-form .gfield_label {
  margin-bottom: 2px !important;
}
#post-sidebar #pp-job-interest-form .gform_fields {
  grid-row-gap: 5px !important;
}
#post-sidebar #pp-job-interest-form .alt-button {
  background: none;
  padding: 0;
  margin: 0;
}
#post-sidebar #pp-job-interest-form .alt-button::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: inherit;
  content: "\F0A9";
  color: #9e0f05;
  margin-left: 5px;
}
#post-sidebar #pp-job-interest-form input[type=submit] {
  background: none;
  padding: 0;
  color: #9e0f05;
  cursor: pointer;
}

.input-blue input, .input-blue select, .input-blue textarea {
  background: #f5f8fa;
  border: 1px solid #cbd6e2;
}
.input-blue input[type=submit] {
  border: 0 !important;
}

.ginput_container .ginput_full span {
  display: block !important;
  margin: 3px 0 0 0 !important;
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
}

article.blog-post .press-contact a {
  text-decoration: none;
}

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0 !important;
}

#cypad-app-3 img, #sc-app-3 img {
  transition: left 0.4s;
}
@media (min-width: 1024px) {
  #cypad-app-3 img, #sc-app-3 img {
    position: relative;
    left: -300%;
  }
}

.latest-resources .alt-bg-color {
  background: white;
}

.cypad.latest-resources .alt-bg-color {
  background: #F1F2F3;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}

.fly-right {
  right: 0;
  transition: right 1s;
}

.flip-cols {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .flip-cols {
    flex-direction: row;
  }
}
.flip-cols .flip-col-1 {
  display: flex;
  order: 2;
}
@media (min-width: 768px) {
  .flip-cols .flip-col-1 {
    order: 1;
  }
}
.flip-cols .flip-col-2 {
  display: flex;
  order: 1;
}
@media (min-width: 768px) {
  .flip-cols .flip-col-2 {
    order: 2;
  }
}

.social-link-header {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6B7280;
  color: #fff;
  border-radius: 50%;
}
.social-link-header a:hover {
  color: #fff;
}

.alt-button input[type=submit], .alt-button input[type=button] {
  border: 0 !important;
}

@media (min-width: 1024px) {
  .lg-hidden {
    display: none !important;
  }
}

.callouts--top:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 18px;
  top: -38px;
  border: 27px solid transparent;
  border-bottom: 32px solid #c1c1c1;
  border-bottom: 32px solid white;
  z-index: 2;
}

.animation-buzz-out {
  -webkit-animation-name: buzz-out;
          animation-name: buzz-out;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}
.animation-shifting-background {
  -webkit-animation: shifting-background 30s ease infinite;
          animation: shifting-background 30s ease infinite;
}

@-webkit-keyframes shifting-background {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shifting-background {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1.5rem;
	padding-left: 1.5rem;
}
@media (min-width: 640px){
	.container{
		max-width: 640px;
	}
}
@media (min-width: 768px){
	.container{
		max-width: 768px;
	}
}
@media (min-width: 1024px){
	.container{
		max-width: 1024px;
	}
}
@media (min-width: 1280px){
	.container{
		max-width: 1280px;
	}
}
@media (min-width: 1536px){
	.container{
		max-width: 1536px;
	}
}
.WysiwygAnchors a, .Wysiwyg a, .WysiwygAnchors a:visited{
	--tw-text-opacity: 1;
	color: rgba(49, 130, 206, var(--tw-text-opacity));
  transition: all 0.24s ease;
}
.WysiwygAnchors a:hover, .Wysiwyg a:hover, .WysiwygAnchors a:focus, .Wysiwyg a:focus, .WysiwygAnchors a:visited:hover, .WysiwygAnchors a:visited:focus{
	--tw-text-opacity: 1;
	color: rgba(99, 179, 237, var(--tw-text-opacity));
}
h1 .WysiwygAnchors a, h1 .Wysiwyg a, h1 .WysiwygAnchors a:visited, h2 .WysiwygAnchors a, h2 .Wysiwyg a, h2 .WysiwygAnchors a:visited, h3 .WysiwygAnchors a, h3 .Wysiwyg a, h3 .WysiwygAnchors a:visited, h4 .WysiwygAnchors a, h4 .Wysiwyg a, h4 .WysiwygAnchors a:visited, h5 .WysiwygAnchors a, h5 .Wysiwyg a, h5 .WysiwygAnchors a:visited, h6 .WysiwygAnchors a, h6 .Wysiwyg a, h6 .WysiwygAnchors a:visited {
  color: inherit;
}

.WysiwygHeadings h1, .Wysiwyg h1, .WysiwygHeadings h2, .Wysiwyg h2, .WysiwygHeadings h3, .Wysiwyg h3, .WysiwygHeadings h4, .Wysiwyg h4, .WysiwygHeadings h5, .Wysiwyg h5, .WysiwygHeadings h6, .Wysiwyg h6{
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-weight: 600;
	line-height: 1.25;
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.WysiwygHeadings h1, .Wysiwyg h1{
	font-size: 1.5rem;
	line-height: 2rem;
}
.WysiwygHeadings h2, .Wysiwyg h2{
	font-size: 1.25rem;
	line-height: 1.75rem;
}
.WysiwygHeadings h3, .Wysiwyg h3, .WysiwygHeadings h4, .Wysiwyg h4, .WysiwygHeadings h5, .Wysiwyg h5{
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.WysiwygImages img.aligncenter, .Wysiwyg img.aligncenter{
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.WysiwygImages .gallery .gallery-item, .Wysiwyg .gallery .gallery-item{
	border-width: 0px;
	text-align: center;
}
.WysiwygImages .gallery .gallery-icon, .Wysiwyg .gallery .gallery-icon{
	text-align: center;
}
.WysiwygImages .gallery img, .Wysiwyg .gallery img{
	display: inline;
  border: none !important;
}
.WysiwygImages .wp-caption-text, .Wysiwyg .wp-caption-text{
	margin-top: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.WysiwygCode code, .Wysiwyg code{
	display: inline-block;
	border-radius: 0.125rem;
	--tw-bg-opacity: 1;
	background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
	padding-left: 0.25rem;
	padding-right: 0.25rem;
	vertical-align: baseline;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 0.875rem;
	line-height: 1.25rem;
	--tw-text-opacity: 1;
	color: rgba(219, 39, 119, var(--tw-text-opacity));
}

.WysiwygSpacing p, .Wysiwyg p, .WysiwygSpacing ul, .Wysiwyg ul, .WysiwygSpacing ol, .Wysiwyg ol, .WysiwygSpacing hr, .Wysiwyg hr, .WysiwygSpacing .wp-block-embed, .Wysiwyg .wp-block-embed, .WysiwygSpacing .gallery, .Wysiwyg .gallery, .WysiwygSpacing [class*=wp-image-], .Wysiwyg [class*=wp-image-]{
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.WysiwygLists ul, .Wysiwyg ul, .WysiwygLists ol, .Wysiwyg ol{
	margin-left: 1.5rem;
	list-style-position: outside;
}

.WysiwygLists ul > :first-child, .Wysiwyg ul > :first-child, .WysiwygLists ol > :first-child, .Wysiwyg ol > :first-child {
    margin-top: 0;
  }

.WysiwygLists ul > :last-child, .Wysiwyg ul > :last-child, .WysiwygLists ol > :last-child, .Wysiwyg ol > :last-child {
    margin-bottom: 0;
  }
.WysiwygLists ul, .Wysiwyg ul{
	list-style-type: disc;
}
.WysiwygLists ol, .Wysiwyg ol{
	list-style-type: decimal;
}
.WysiwygLists li, .Wysiwyg li{
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

.pointer-events-none{
	pointer-events: none !important;
}

.invisible{
	visibility: hidden !important;
}

.static{
	position: static !important;
}

.fixed{
	position: fixed !important;
}

.absolute{
	position: absolute !important;
}

.relative{
	position: relative !important;
}

.sticky{
	position: sticky !important;
}

.inset-0{
	top: 0px !important;
	right: 0px !important;
	bottom: 0px !important;
	left: 0px !important;
}

.-inset-16{
	top: -4rem !important;
	right: -4rem !important;
	bottom: -4rem !important;
	left: -4rem !important;
}

.-top-32{
	top: -8rem !important;
}

.bottom-0{
	bottom: 0px !important;
}

.right-1\/4{
	right: 25% !important;
}

.-top-8{
	top: -2rem !important;
}

.left-1\/2{
	left: 50% !important;
}

.-top-12{
	top: -3rem !important;
}

.top-0{
	top: 0px !important;
}

.top-\[70px\]{
	top: 70px !important;
}

.right-0{
	right: 0px !important;
}

.top-full{
	top: 100% !important;
}

.left-0{
	left: 0px !important;
}

.top-\[10px\]{
	top: 10px !important;
}

.right-\[10px\]{
	right: 10px !important;
}

.left-\[10px\]{
	left: 10px !important;
}

.right-1\/2{
	right: 50% !important;
}

.top-4{
	top: 1rem !important;
}

.left-4{
	left: 1rem !important;
}

.right-4{
	right: 1rem !important;
}

.top-1\/2{
	top: 50% !important;
}

.z-20{
	z-index: 20 !important;
}

.z-10{
	z-index: 10 !important;
}

.z-50{
	z-index: 50 !important;
}

.z-30{
	z-index: 30 !important;
}

.z-40{
	z-index: 40 !important;
}

.order-2{
	order: 2 !important;
}

.order-1{
	order: 1 !important;
}

.m-0{
	margin: 0px !important;
}

.mx-auto{
	margin-left: auto !important;
	margin-right: auto !important;
}

.mx-8{
	margin-left: 2rem !important;
	margin-right: 2rem !important;
}

.mx-1{
	margin-left: 0.25rem !important;
	margin-right: 0.25rem !important;
}

.mx-4{
	margin-left: 1rem !important;
	margin-right: 1rem !important;
}

.my-0{
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.mb-24{
	margin-bottom: 6rem !important;
}

.mr-3{
	margin-right: 0.75rem !important;
}

.mb-3{
	margin-bottom: 0.75rem !important;
}

.mb-16{
	margin-bottom: 4rem !important;
}

.-mb-32{
	margin-bottom: -8rem !important;
}

.mt-8{
	margin-top: 2rem !important;
}

.mb-8{
	margin-bottom: 2rem !important;
}

.mb-4{
	margin-bottom: 1rem !important;
}

.-ml-16{
	margin-left: -4rem !important;
}

.ml-auto{
	margin-left: auto !important;
}

.mb-\[30px\]{
	margin-bottom: 30px !important;
}

.mb-2{
	margin-bottom: 0.5rem !important;
}

.mt-2{
	margin-top: 0.5rem !important;
}

.mb-\[25px\]{
	margin-bottom: 25px !important;
}

.mb-\[15px\]{
	margin-bottom: 15px !important;
}

.mt-auto{
	margin-top: auto !important;
}

.mt-4{
	margin-top: 1rem !important;
}

.ml-1{
	margin-left: 0.25rem !important;
}

.ml-\[18px\]{
	margin-left: 18px !important;
}

.mr-\[12\%\]{
	margin-right: 12% !important;
}

.mt-16{
	margin-top: 4rem !important;
}

.mb-12{
	margin-bottom: 3rem !important;
}

.mr-2{
	margin-right: 0.5rem !important;
}

.mb-6{
	margin-bottom: 1.5rem !important;
}

.-ml-4{
	margin-left: -1rem !important;
}

.mb-0{
	margin-bottom: 0px !important;
}

.ml-2{
	margin-left: 0.5rem !important;
}

.mt-10{
	margin-top: 2.5rem !important;
}

.mr-4{
	margin-right: 1rem !important;
}

.mt-5{
	margin-top: 1.25rem !important;
}

.mb-1{
	margin-bottom: 0.25rem !important;
}

.ml-4{
	margin-left: 1rem !important;
}

.box-border{
	box-sizing: border-box !important;
}

.block{
	display: block !important;
}

.flex{
	display: flex !important;
}

.inline-flex{
	display: inline-flex !important;
}

.grid{
	display: grid !important;
}

.hidden{
	display: none !important;
}

.h-11{
	height: 2.75rem !important;
}

.h-32{
	height: 8rem !important;
}

.h-\[41px\]{
	height: 41px !important;
}

.h-16{
	height: 4rem !important;
}

.h-9{
	height: 2.25rem !important;
}

.h-full{
	height: 100% !important;
}

.h-\[70px\]{
	height: 70px !important;
}

.h-\[88px\]{
	height: 88px !important;
}

.h-\[32px\]{
	height: 32px !important;
}

.h-\[26px\]{
	height: 26px !important;
}

.h-\[30px\]{
	height: 30px !important;
}

.h-\[78px\]{
	height: 78px !important;
}

.h-\[42px\]{
	height: 42px !important;
}

.h-\[2px\]{
	height: 2px !important;
}

.h-screen{
	height: 100vh !important;
}

.h-\[77px\]{
	height: 77px !important;
}

.h-\[25px\]{
	height: 25px !important;
}

.h-96{
	height: 24rem !important;
}

.h-52{
	height: 13rem !important;
}

.h-72{
	height: 18rem !important;
}

.h-14{
	height: 3.5rem !important;
}

.h-\[420px\]{
	height: 420px !important;
}

.h-\[200px\]{
	height: 200px !important;
}

.h-24{
	height: 6rem !important;
}

.h-\[450px\]{
	height: 450px !important;
}

.min-h-screen{
	min-height: 100vh !important;
}

.w-full{
	width: 100% !important;
}

.w-10\/12{
	width: 83.333333% !important;
}

.w-\[171px\]{
	width: 171px !important;
}

.w-9{
	width: 2.25rem !important;
}

.w-\[89px\]{
	width: 89px !important;
}

.w-\[300px\]{
	width: 300px !important;
}

.w-\[32px\]{
	width: 32px !important;
}

.w-\[26px\]{
	width: 26px !important;
}

.w-\[23px\]{
	width: 23px !important;
}

.w-\[34px\]{
	width: 34px !important;
}

.w-screen{
	width: 100vw !important;
}

.w-\[77px\]{
	width: 77px !important;
}

.w-\[25px\]{
	width: 25px !important;
}

.w-\[calc\(100\%-77px\)\]{
	width: calc(100% - 77px) !important;
}

.w-14{
	width: 3.5rem !important;
}

.w-1\/2{
	width: 50% !important;
}

.min-w-56{
	min-width: 14rem !important;
}

.max-w-2xl{
	max-width: 42rem !important;
}

.max-w-3xl{
	max-width: 48rem !important;
}

.max-w-\[212px\]{
	max-width: 212px !important;
}

.flex-1{
	flex: 1 1 0% !important;
}

.flex-grow{
	flex-grow: 1 !important;
}

.-translate-x-1\/2{
	--tw-translate-x: -50% !important;
	transform: var(--tw-transform) !important;
}

.-translate-y-1\/2{
	--tw-translate-y: -50% !important;
	transform: var(--tw-transform) !important;
}

.rotate-45{
	--tw-rotate: 45deg !important;
	transform: var(--tw-transform) !important;
}

.cursor-pointer{
	cursor: pointer !important;
}

.list-none{
	list-style-type: none !important;
}

.grid-flow-row{
	grid-auto-flow: row !important;
}

.grid-cols-1{
	grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.flex-row{
	flex-direction: row !important;
}

.flex-col{
	flex-direction: column !important;
}

.flex-col-reverse{
	flex-direction: column-reverse !important;
}

.flex-wrap{
	flex-wrap: wrap !important;
}

.items-start{
	align-items: flex-start !important;
}

.items-end{
	align-items: flex-end !important;
}

.items-center{
	align-items: center !important;
}

.items-baseline{
	align-items: baseline !important;
}

.justify-start{
	justify-content: flex-start !important;
}

.justify-end{
	justify-content: flex-end !important;
}

.justify-center{
	justify-content: center !important;
}

.justify-between{
	justify-content: space-between !important;
}

.justify-around{
	justify-content: space-around !important;
}

.gap-16{
	gap: 4rem !important;
}

.gap-6{
	gap: 1.5rem !important;
}

.gap-8{
	gap: 2rem !important;
}

.gap-\[5px\]{
	gap: 5px !important;
}

.gap-\[25px\]{
	gap: 25px !important;
}

.gap-\[10px\]{
	gap: 10px !important;
}

.gap-3{
	gap: 0.75rem !important;
}

.gap-4{
	gap: 1rem !important;
}

.gap-\[21px\]{
	gap: 21px !important;
}

.gap-\[6px\]{
	gap: 6px !important;
}

.gap-\[13px\]{
	gap: 13px !important;
}

.gap-\[3px\]{
	gap: 3px !important;
}

.gap-\[1px\]{
	gap: 1px !important;
}

.overflow-hidden{
	overflow: hidden !important;
}

.overflow-x-hidden{
	overflow-x: hidden !important;
}

.rounded-xl{
	border-radius: 0.75rem !important;
}

.rounded-\[6px\]{
	border-radius: 6px !important;
}

.rounded-full{
	border-radius: 9999px !important;
}

.rounded-none{
	border-radius: 0px !important;
}

.rounded{
	border-radius: 0.25rem !important;
}

.border{
	border-width: 1px !important;
}

.border-2{
	border-width: 2px !important;
}

.border-t{
	border-top-width: 1px !important;
}

.border-b{
	border-bottom-width: 1px !important;
}

.border-r{
	border-right-width: 1px !important;
}

.border-gray-400{
	--tw-border-opacity: 1 !important;
	border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important;
}

.border-white{
	--tw-border-opacity: 1 !important;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.border-\[\#e2e8f0\]{
	--tw-border-opacity: 1 !important;
	border-color: rgba(226, 232, 240, var(--tw-border-opacity)) !important;
}

.border-gray-200{
	--tw-border-opacity: 1 !important;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important;
}

.border-r-white{
	--tw-border-opacity: 1 !important;
	border-right-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.border-b-white{
	--tw-border-opacity: 1 !important;
	border-bottom-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.border-opacity-30{
	--tw-border-opacity: 0.3 !important;
}

.bg-white{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.bg-\[\#002E73\]{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(0, 46, 115, var(--tw-bg-opacity)) !important;
}

.bg-\[\#ece8dc\]{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(236, 232, 220, var(--tw-bg-opacity)) !important;
}

.bg-gray-100{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important;
}

.bg-blue-900{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important;
}

.bg-gray-500{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important;
}

.bg-gray-400{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important;
}

.bg-indigo-700{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important;
}

.bg-opacity-90{
	--tw-bg-opacity: 0.9 !important;
}

.bg-contain{
	background-size: contain !important;
}

.bg-cover{
	background-size: cover !important;
}

.bg-bottom{
	background-position: bottom !important;
}

.bg-top{
	background-position: top !important;
}

.bg-center{
	background-position: center !important;
}

.bg-right-bottom{
	background-position: right bottom !important;
}

.bg-no-repeat{
	background-repeat: no-repeat !important;
}

.bg-repeat-x{
	background-repeat: repeat-x !important;
}

.p-2{
	padding: 0.5rem !important;
}

.p-1{
	padding: 0.25rem !important;
}

.p-8{
	padding: 2rem !important;
}

.p-3{
	padding: 0.75rem !important;
}

.p-\[13px\]{
	padding: 13px !important;
}

.p-4{
	padding: 1rem !important;
}

.p-6{
	padding: 1.5rem !important;
}

.p-0{
	padding: 0px !important;
}

.p-5{
	padding: 1.25rem !important;
}

.py-12{
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.py-40{
	padding-top: 10rem !important;
	padding-bottom: 10rem !important;
}

.py-3{
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
}

.px-4{
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}

.px-5{
	padding-left: 1.25rem !important;
	padding-right: 1.25rem !important;
}

.py-4{
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.py-\[18px\]{
	padding-top: 18px !important;
	padding-bottom: 18px !important;
}

.px-\[28px\]{
	padding-left: 28px !important;
	padding-right: 28px !important;
}

.py-\[11px\]{
	padding-top: 11px !important;
	padding-bottom: 11px !important;
}

.px-2{
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}

.py-\[40px\]{
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

.px-\[25px\]{
	padding-left: 25px !important;
	padding-right: 25px !important;
}

.py-\[72px\]{
	padding-top: 72px !important;
	padding-bottom: 72px !important;
}

.px-\[20px\]{
	padding-left: 20px !important;
	padding-right: 20px !important;
}

.py-\[13px\]{
	padding-top: 13px !important;
	padding-bottom: 13px !important;
}

.py-\[51px\]{
	padding-top: 51px !important;
	padding-bottom: 51px !important;
}

.px-6{
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

.px-12{
	padding-left: 3rem !important;
	padding-right: 3rem !important;
}

.py-8{
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}

.py-16{
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.px-10{
	padding-left: 2.5rem !important;
	padding-right: 2.5rem !important;
}

.py-1{
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}

.py-5{
	padding-top: 1.25rem !important;
	padding-bottom: 1.25rem !important;
}

.pt-20{
	padding-top: 5rem !important;
}

.pt-32{
	padding-top: 8rem !important;
}

.pb-4{
	padding-bottom: 1rem !important;
}

.pb-8{
	padding-bottom: 2rem !important;
}

.pt-24{
	padding-top: 6rem !important;
}

.pt-12{
	padding-top: 3rem !important;
}

.pb-24{
	padding-bottom: 6rem !important;
}

.pb-12{
	padding-bottom: 3rem !important;
}

.pt-10{
	padding-top: 2.5rem !important;
}

.pt-6{
	padding-top: 1.5rem !important;
}

.pb-\[10px\]{
	padding-bottom: 10px !important;
}

.pl-\[24px\]{
	padding-left: 24px !important;
}

.pt-\[40px\]{
	padding-top: 40px !important;
}

.pt-\[20px\]{
	padding-top: 20px !important;
}

.pb-\[90px\]{
	padding-bottom: 90px !important;
}

.pt-2{
	padding-top: 0.5rem !important;
}

.pt-\[11px\]{
	padding-top: 11px !important;
}

.pb-\[25px\]{
	padding-bottom: 25px !important;
}

.pt-4{
	padding-top: 1rem !important;
}

.pb-0{
	padding-bottom: 0px !important;
}

.pt-8{
	padding-top: 2rem !important;
}

.pt-5{
	padding-top: 1.25rem !important;
}

.pb-20{
	padding-bottom: 5rem !important;
}

.text-center{
	text-align: center !important;
}

.align-middle{
	vertical-align: middle !important;
}

.align-bottom{
	vertical-align: bottom !important;
}

.font-zilla{
	font-family: "sofia-pro", sans-serif !important;
}

.font-sofia-pro{
	font-family: "sofia-pro", sans-serif !important;
}

.font-sofia-pro-bold{
	font-family: "sofia-pro", sans-serif !important;
}

.text-lg{
	font-size: 1.125rem !important;
	line-height: 1.75rem !important;
}

.text-xl{
	font-size: 1.25rem !important;
	line-height: 1.75rem !important;
}

.text-5xl{
	font-size: 3rem !important;
	line-height: 1 !important;
}

.text-\[22px\]{
	font-size: 22px !important;
}

.text-\[16px\]{
	font-size: 16px !important;
}

.text-\[15px\]{
	font-size: 15px !important;
}

.text-\[12px\]{
	font-size: 12px !important;
}

.text-xs{
	font-size: 0.75rem !important;
	line-height: 1rem !important;
}

.text-sm{
	font-size: 0.875rem !important;
	line-height: 1.25rem !important;
}

.text-3xl{
	font-size: 1.875rem !important;
	line-height: 2.25rem !important;
}

.text-\[13px\]{
	font-size: 13px !important;
}

.text-\[14px\]{
	font-size: 14px !important;
}

.text-\[25px\]{
	font-size: 25px !important;
}

.text-2xl{
	font-size: 1.5rem !important;
	line-height: 2rem !important;
}

.font-normal{
	font-weight: 400 !important;
}

.font-bold{
	font-weight: 700 !important;
}

.font-extrabold{
	font-weight: 800 !important;
}

.uppercase{
	text-transform: uppercase !important;
}

.leading-tight{
	line-height: 1.25 !important;
}

.leading-\[25px\]{
	line-height: 25px !important;
}

.leading-\[32px\]{
	line-height: 32px !important;
}

.leading-\[22px\]{
	line-height: 22px !important;
}

.leading-\[normal\]{
	line-height: normal !important;
}

.leading-\[27px\]{
	line-height: 27px !important;
}

.leading-\[13px\]{
	line-height: 13px !important;
}

.leading-\[1\.25\]{
	line-height: 1.25 !important;
}

.leading-6{
	line-height: 1.5rem !important;
}

.leading-none{
	line-height: 1 !important;
}

.leading-loose{
	line-height: 2 !important;
}

.text-white{
	--tw-text-opacity: 1 !important;
	color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.text-gray-500{
	--tw-text-opacity: 1 !important;
	color: rgba(107, 114, 128, var(--tw-text-opacity)) !important;
}

.text-\[\#3e5e78\]{
	--tw-text-opacity: 1 !important;
	color: rgba(62, 94, 120, var(--tw-text-opacity)) !important;
}

.text-\[\#585858\]{
	--tw-text-opacity: 1 !important;
	color: rgba(88, 88, 88, var(--tw-text-opacity)) !important;
}

.text-\[\#002E73\]{
	--tw-text-opacity: 1 !important;
	color: rgba(0, 46, 115, var(--tw-text-opacity)) !important;
}

.text-blue-900{
	--tw-text-opacity: 1 !important;
	color: rgba(30, 58, 138, var(--tw-text-opacity)) !important;
}

.text-indigo-200{
	--tw-text-opacity: 1 !important;
	color: rgba(199, 210, 254, var(--tw-text-opacity)) !important;
}

.underline{
	text-decoration: underline !important;
}

.no-underline{
	text-decoration: none !important;
}

.backdrop-blur-lg{
	--tw-backdrop-blur: blur(16px) !important;
	-webkit-backdrop-filter: var(--tw-backdrop-filter) !important;
	        backdrop-filter: var(--tw-backdrop-filter) !important;
}

.transition{
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
	transition-duration: 150ms !important;
}

.ease-out{
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
}
.content-container, .footer-content-container {
  max-width: 1158px;
}

ul.right-align {
  margin-left: 0px;
  margin-right: 20px;
  direction: rtl;
}

.alt-button{
	margin-top: 0.5rem;
	display: inline-block;
	border-radius: 0.25rem;
	border-width: 3px;
	border-color: transparent;
	padding: 0.75rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	text-align: center;
	font-family: "sofia-pro", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-transform: lowercase;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.alt-button:hover{
	opacity: 0.9;
}
.alt-button:first-letter{
	text-transform: capitalize;
}

.primary-button{
	margin-top: 0.5rem;
	display: inline-block;
	border-radius: 0.25rem;
	padding: 0.75rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	text-align: center;
	font-family: "sofia-pro", sans-serif;
	font-size: 1.25rem;
	line-height: 1.75rem;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.primary-button:hover{
	opacity: 0.9;
}

.m-between + .m-between{
	margin-top: 0.25rem;
}
.m-between-0 + .m-between-0{
	margin-top: 0px;
}
.m-between-1 + .m-between-1{
	margin-top: 0.25rem;
}
.m-between-2 + .m-between-2{
	margin-top: 0.5rem;
}
.m-between-3 + .m-between-3{
	margin-top: 0.75rem;
}
.m-between-4 + .m-between-4{
	margin-top: 1rem;
}
.m-between-5 + .m-between-5{
	margin-top: 1.25rem;
}
.m-between-6 + .m-between-6{
	margin-top: 1.5rem;
}
.m-between-8 + .m-between-8{
	margin-top: 2rem;
}
.m-between-10 + .m-between-10{
	margin-top: 2.5rem;
}
.m-between-12 + .m-between-12{
	margin-top: 3rem;
}
.m-between-16 + .m-between-16{
	margin-top: 4rem;
}
.m-between-20 + .m-between-20{
	margin-top: 5rem;
}
.m-between-24 + .m-between-24{
	margin-top: 6rem;
}
.m-between-32 + .m-between-32{
	margin-top: 8rem;
}
.m-between-40 + .m-between-40{
	margin-top: 10rem;
}
.m-between-48 + .m-between-48{
	margin-top: 12rem;
}
.m-between-56 + .m-between-56{
	margin-top: 14rem;
}
.m-between-64 + .m-between-64{
	margin-top: 16rem;
}
.m-between-px + .m-between-px{
	margin-top: 1px;
}

.hm-between + .hm-between{
	margin-left: 0.25rem;
}
.hm-between-0 + .hm-between-0{
	margin-left: 0px;
}
.hm-between-1 + .hm-between-1{
	margin-left: 0.25rem;
}
.hm-between-2 + .hm-between-2{
	margin-left: 0.5rem;
}
.hm-between-3 + .hm-between-3{
	margin-left: 0.75rem;
}
.hm-between-4 + .hm-between-4{
	margin-left: 1rem;
}
.hm-between-5 + .hm-between-5{
	margin-left: 1.25rem;
}
.hm-between-6 + .hm-between-6{
	margin-left: 1.5rem;
}
.hm-between-8 + .hm-between-8{
	margin-left: 2rem;
}
.hm-between-10 + .hm-between-10{
	margin-left: 2.5rem;
}
.hm-between-12 + .hm-between-12{
	margin-left: 3rem;
}
.hm-between-16 + .hm-between-16{
	margin-left: 4rem;
}
.hm-between-20 + .hm-between-20{
	margin-left: 5rem;
}
.hm-between-24 + .hm-between-24{
	margin-left: 6rem;
}
.hm-between-32 + .hm-between-32{
	margin-left: 8rem;
}
.hm-between-40 + .hm-between-40{
	margin-left: 10rem;
}
.hm-between-48 + .hm-between-48{
	margin-left: 12rem;
}
.hm-between-56 + .hm-between-56{
	margin-left: 14rem;
}
.hm-between-64 + .hm-between-64{
	margin-left: 16rem;
}
.hm-between-px + .hm-between-px{
	margin-left: 1px;
}

@responsive {
  .m-between-children > :not(:first-child){
		margin-top: 0.25rem;
	}
  .m-between-children-0 > :not(:first-child){
		margin-top: 0px;
	}
  .m-between-children-1 > :not(:first-child){
		margin-top: 0.25rem;
	}
  .m-between-children-2 > :not(:first-child){
		margin-top: 0.5rem;
	}
  .m-between-children-3 > :not(:first-child){
		margin-top: 0.75rem;
	}
  .m-between-children-4 > :not(:first-child){
		margin-top: 1rem;
	}
  .m-between-children-5 > :not(:first-child){
		margin-top: 1.25rem;
	}
  .m-between-children-6 > :not(:first-child){
		margin-top: 1.5rem;
	}
  .m-between-children-8 > :not(:first-child){
		margin-top: 2rem;
	}
  .m-between-children-10 > :not(:first-child){
		margin-top: 2.5rem;
	}
  .m-between-children-12 > :not(:first-child){
		margin-top: 3rem;
	}
  .m-between-children-16 > :not(:first-child){
		margin-top: 4rem;
	}
  .m-between-children-20 > :not(:first-child){
		margin-top: 5rem;
	}
  .m-between-children-24 > :not(:first-child){
		margin-top: 6rem;
	}
  .m-between-children-32 > :not(:first-child){
		margin-top: 8rem;
	}
  .m-between-children-40 > :not(:first-child){
		margin-top: 10rem;
	}
  .m-between-children-48 > :not(:first-child){
		margin-top: 12rem;
	}
  .m-between-children-56 > :not(:first-child){
		margin-top: 14rem;
	}
  .m-between-children-64 > :not(:first-child){
		margin-top: 16rem;
	}
  .m-between-children-px > :not(:first-child){
		margin-top: 1px;
	}
  .hm-between-children > :not(:first-child){
		margin-left: 0.25rem;
	}
  .hm-between-children-0 > :not(:first-child){
		margin-left: 0px;
	}
  .hm-between-children-1 > :not(:first-child){
		margin-left: 0.25rem;
	}
  .hm-between-children-2 > :not(:first-child){
		margin-left: 0.5rem;
	}
  .hm-between-children-3 > :not(:first-child){
		margin-left: 0.75rem;
	}
  .hm-between-children-4 > :not(:first-child){
		margin-left: 1rem;
	}
  .hm-between-children-5 > :not(:first-child){
		margin-left: 1.25rem;
	}
  .hm-between-children-6 > :not(:first-child){
		margin-left: 1.5rem;
	}
  .hm-between-children-8 > :not(:first-child){
		margin-left: 2rem;
	}
  .hm-between-children-10 > :not(:first-child){
		margin-left: 2.5rem;
	}
  .hm-between-children-12 > :not(:first-child){
		margin-left: 3rem;
	}
  .hm-between-children-16 > :not(:first-child){
		margin-left: 4rem;
	}
  .hm-between-children-20 > :not(:first-child){
		margin-left: 5rem;
	}
  .hm-between-children-24 > :not(:first-child){
		margin-left: 6rem;
	}
  .hm-between-children-32 > :not(:first-child){
		margin-left: 8rem;
	}
  .hm-between-children-40 > :not(:first-child){
		margin-left: 10rem;
	}
  .hm-between-children-48 > :not(:first-child){
		margin-left: 12rem;
	}
  .hm-between-children-56 > :not(:first-child){
		margin-left: 14rem;
	}
  .hm-between-children-64 > :not(:first-child){
		margin-left: 16rem;
	}
  .hm-between-children-px > :not(:first-child){
		margin-left: 1px;
	}
  .m-trim > :first-child {
    margin-top: 0;
  }
  .m-trim > :last-child {
    margin-bottom: 0;
  }
  .hm-trim > :first-child {
    margin-left: 0;
  }
  .hm-trim > :last-child {
    margin-right: 0;
  }
}

@-webkit-keyframes pulse{
	50%{
		opacity: .5;
	}
}
@keyframes pulse{
	50%{
		opacity: .5;
	}
}
.hover\:animate-pulse:hover{
	-webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
	        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}
.hover\:underline:hover{
	text-decoration: underline !important;
}
@media (min-width: 640px){
	.sm\:-mb-12{
		margin-bottom: -3rem !important;
	}
	.sm\:-mb-16{
		margin-bottom: -4rem !important;
	}
	.sm\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.sm\:py-20{
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.sm\:px-6{
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}
	.sm\:pb-0{
		padding-bottom: 0px !important;
	}
	.sm\:text-4xl{
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}
	.sm\:text-3xl{
		font-size: 1.875rem !important;
		line-height: 2.25rem !important;
	}
}
@media (min-width: 768px){
	.md\:-top-20{
		top: -5rem !important;
	}
	.md\:col-span-2{
		grid-column: span 2 / span 2 !important;
	}
	.md\:mx-4{
		margin-left: 1rem !important;
		margin-right: 1rem !important;
	}
	.md\:-mt-6{
		margin-top: -1.5rem !important;
	}
	.md\:-mt-40{
		margin-top: -10rem !important;
	}
	.md\:-mb-48{
		margin-bottom: -12rem !important;
	}
	.md\:mr-2{
		margin-right: 0.5rem !important;
	}
	.md\:h-full{
		height: 100% !important;
	}
	.md\:min-h-\[320px\]{
		min-height: 320px !important;
	}
	.md\:w-full{
		width: 100% !important;
	}
	.md\:w-\[400px\]{
		width: 400px !important;
	}
	.md\:w-1\/3{
		width: 33.333333% !important;
	}
	.md\:max-w-full{
		max-width: 100% !important;
	}
	.md\:flex-shrink-0{
		flex-shrink: 0 !important;
	}
	.md\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.md\:flex-row{
		flex-direction: row !important;
	}
	.md\:flex-col{
		flex-direction: column !important;
	}
	.md\:p-6{
		padding: 1.5rem !important;
	}
	.md\:pb-48{
		padding-bottom: 12rem !important;
	}
	.md\:pt-40{
		padding-top: 10rem !important;
	}
	.md\:pb-0{
		padding-bottom: 0px !important;
	}
	.md\:pt-10{
		padding-top: 2.5rem !important;
	}
}
@media (min-width: 1024px){
	.lg\:-top-32{
		top: -8rem !important;
	}
	.lg\:col-span-3{
		grid-column: span 3 / span 3 !important;
	}
	.lg\:mx-4{
		margin-left: 1rem !important;
		margin-right: 1rem !important;
	}
	.lg\:-mt-20{
		margin-top: -5rem !important;
	}
	.lg\:mt-16{
		margin-top: 4rem !important;
	}
	.lg\:-ml-20{
		margin-left: -5rem !important;
	}
	.lg\:mt-36{
		margin-top: 9rem !important;
	}
	.lg\:mt-44{
		margin-top: 11rem !important;
	}
	.lg\:mt-8{
		margin-top: 2rem !important;
	}
	.lg\:-ml-16{
		margin-left: -4rem !important;
	}
	.lg\:mt-24{
		margin-top: 6rem !important;
	}
	.lg\:mb-8{
		margin-bottom: 2rem !important;
	}
	.lg\:ml-6{
		margin-left: 1.5rem !important;
	}
	.lg\:block{
		display: block !important;
	}
	.lg\:inline-block{
		display: inline-block !important;
	}
	.lg\:flex{
		display: flex !important;
	}
	.lg\:hidden{
		display: none !important;
	}
	.lg\:h-12{
		height: 3rem !important;
	}
	.lg\:h-28{
		height: 7rem !important;
	}
	.lg\:h-96{
		height: 24rem !important;
	}
	.lg\:h-auto{
		height: auto !important;
	}
	.lg\:h-\[190px\]{
		height: 190px !important;
	}
	.lg\:h-\[358px\]{
		height: 358px !important;
	}
	.lg\:max-h-\[7rem\]{
		max-height: 7rem !important;
	}
	.lg\:min-h-\[420px\]{
		min-height: 420px !important;
	}
	.lg\:w-2\/3{
		width: 66.666667% !important;
	}
	.lg\:w-1\/3{
		width: 33.333333% !important;
	}
	.lg\:w-\[650px\]{
		width: 650px !important;
	}
	.lg\:w-96{
		width: 24rem !important;
	}
	.lg\:w-1\/2{
		width: 50% !important;
	}
	.lg\:max-w-\[200px\]{
		max-width: 200px !important;
	}
	.lg\:grid-cols-3{
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
	.lg\:grid-cols-4{
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
	.lg\:grid-cols-1{
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}
	.lg\:flex-row{
		flex-direction: row !important;
	}
	.lg\:flex-col{
		flex-direction: column !important;
	}
	.lg\:items-end{
		align-items: flex-end !important;
	}
	.lg\:justify-center{
		justify-content: center !important;
	}
	.lg\:justify-between{
		justify-content: space-between !important;
	}
	.lg\:gap-20{
		gap: 5rem !important;
	}
	.lg\:gap-10{
		gap: 2.5rem !important;
	}
	.lg\:gap-0{
		gap: 0px !important;
	}
	.lg\:overflow-hidden{
		overflow: hidden !important;
	}
	.lg\:whitespace-nowrap{
		white-space: nowrap !important;
	}
	.lg\:p-8{
		padding: 2rem !important;
	}
	.lg\:p-10{
		padding: 2.5rem !important;
	}
	.lg\:py-40{
		padding-top: 10rem !important;
		padding-bottom: 10rem !important;
	}
	.lg\:px-12{
		padding-left: 3rem !important;
		padding-right: 3rem !important;
	}
	.lg\:px-0{
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.lg\:px-8{
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
	.lg\:pt-32{
		padding-top: 8rem !important;
	}
	.lg\:pt-64{
		padding-top: 16rem !important;
	}
	.lg\:pt-20{
		padding-top: 5rem !important;
	}
	.lg\:pt-72{
		padding-top: 18rem !important;
	}
	.lg\:pb-8{
		padding-bottom: 2rem !important;
	}
	.lg\:pt-80{
		padding-top: 20rem !important;
	}
	.lg\:pt-16{
		padding-top: 4rem !important;
	}
	.lg\:text-left{
		text-align: left !important;
	}
	.lg\:text-right{
		text-align: right !important;
	}
	.lg\:text-xl{
		font-size: 1.25rem !important;
		line-height: 1.75rem !important;
	}
	.lg\:text-lg{
		font-size: 1.125rem !important;
		line-height: 1.75rem !important;
	}
	.lg\:uppercase{
		text-transform: uppercase !important;
	}
}
@media (min-width: 1280px){
	.xl\:container{
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}
	@media (min-width: 640px){
		.xl\:container{
			max-width: 640px;
		}
	}
	@media (min-width: 768px){
		.xl\:container{
			max-width: 768px;
		}
	}
	@media (min-width: 1024px){
		.xl\:container{
			max-width: 1024px;
		}
	}
	@media (min-width: 1280px){
		.xl\:container{
			max-width: 1280px;
		}
	}
	@media (min-width: 1536px){
		.xl\:container{
			max-width: 1536px;
		}
	}
	.xl\:static{
		position: static !important;
	}
	.xl\:relative{
		position: relative !important;
	}
	.xl\:sticky{
		position: sticky !important;
	}
	.xl\:top-auto{
		top: auto !important;
	}
	.xl\:top-0{
		top: 0px !important;
	}
	.xl\:z-\[31\]{
		z-index: 31 !important;
	}
	.xl\:order-none{
		order: 0 !important;
	}
	.xl\:order-last{
		order: 9999 !important;
	}
	.xl\:mx-8{
		margin-left: 2rem !important;
		margin-right: 2rem !important;
	}
	.xl\:mx-2{
		margin-left: 0.5rem !important;
		margin-right: 0.5rem !important;
	}
	.xl\:mt-24{
		margin-top: 6rem !important;
	}
	.xl\:mr-2{
		margin-right: 0.5rem !important;
	}
	.xl\:mb-0{
		margin-bottom: 0px !important;
	}
	.xl\:ml-0{
		margin-left: 0px !important;
	}
	.xl\:mt-0{
		margin-top: 0px !important;
	}
	.xl\:mt-16{
		margin-top: 4rem !important;
	}
	.xl\:block{
		display: block !important;
	}
	.xl\:flex{
		display: flex !important;
	}
	.xl\:hidden{
		display: none !important;
	}
	.xl\:h-11{
		height: 2.75rem !important;
	}
	.xl\:h-24{
		height: 6rem !important;
	}
	.xl\:h-0{
		height: 0px !important;
	}
	.xl\:h-\[88px\]{
		height: 88px !important;
	}
	.xl\:w-8\/12{
		width: 66.666667% !important;
	}
	.xl\:w-\[calc\(33\%-35px\)\]{
		width: calc(33% - 35px) !important;
	}
	.xl\:w-\[calc\(25\%-35px\)\]{
		width: calc(25% - 35px) !important;
	}
	.xl\:w-auto{
		width: auto !important;
	}
	.xl\:w-4\/12{
		width: 33.333333% !important;
	}
	.xl\:w-1\/3{
		width: 33.333333% !important;
	}
	.xl\:rotate-90{
		--tw-rotate: 90deg !important;
		transform: var(--tw-transform) !important;
	}
	.xl\:flex-row{
		flex-direction: row !important;
	}
	.xl\:flex-col{
		flex-direction: column !important;
	}
	.xl\:items-start{
		align-items: flex-start !important;
	}
	.xl\:gap-\[35px\]{
		gap: 35px !important;
	}
	.xl\:border-none{
		border-style: none !important;
	}
	.xl\:bg-transparent{
		background-color: transparent !important;
	}
	.xl\:p-0{
		padding: 0px !important;
	}
	.xl\:py-\[42px\]{
		padding-top: 42px !important;
		padding-bottom: 42px !important;
	}
	.xl\:py-0{
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
	.xl\:px-8{
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
	.xl\:pt-32{
		padding-top: 8rem !important;
	}
	.xl\:pb-0{
		padding-bottom: 0px !important;
	}
	.xl\:shadow{
		--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
	}
}