@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{
	--tw-text-opacity: 1;
	color: rgba(103, 107, 115, var(--tw-text-opacity));
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "sofia-pro", sans-serif;;
  font-weight: 400;
}
@media (min-width: 768px) {}

h2, .h2, h3, .h3, h4, .h4, h5, .h5, .title, .subtitle{
	font-family: "sofia-pro", sans-serif;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: rgba(0, 46, 115, var(--tw-text-opacity));
}

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", sans-serif;
	font-weight: 300;
}

p{
	font-family: "sofia-pro", sans-serif;
	font-weight: 300;
	--tw-text-opacity: 1;
	color: rgba(68, 68, 68, var(--tw-text-opacity));
}

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;
}

.title{
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
}

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

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

p{
	margin-bottom: 1.25rem;
	font-size: 1rem;
	line-height: 1.5rem;
	line-height: 1.5rem;
}

.vc_row li, .vc_row ol{
	font-size: 0.875rem;
	line-height: 1.25rem;
	line-height: 1.5rem;
}

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

.slide-container {
  height: 522px;
  border-bottom: 1px solid #aaaaaa;
}

.rotate-slider {
  margin: 1em auto;
  height: 426px;
  /* overflow: hidden; */
  width: 406px;
  position: relative;
}

.slide-left {
  position: absolute;
  top: 70%;
  left: 50px;
  transform: translateY(-50%);
}

.slide-right {
  position: absolute;
  top: 70%;
  right: 50px;
  transform: translateY(-50%);
}

@media only screen and (min-width: 576px) {
  .slide-left {
    top: 50%;
  }

  .slide-right {
    top: 50%;
  }
}
.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 {
  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 .inner {
  margin-top: 30px;
  box-sizing: border-box;
  width: 404px;
  height: 404px;
  border-radius: 100%;
  border: 2px solid #adadad;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
}

.rotate-slider ul.slides li .inner:after {
  position: absolute;
  content: "";
  left: -29px;
  top: -29px;
  border: 27px solid #adadad;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
  width: 458px;
  height: 458px;
  border-radius: 100%;
}

.rotate-slider ul.slides li.active .inner:after {
  border-top-color: #002e73;
  border-right-color: #002e73;
}

.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: #2e2e80;
}

.rotate-slider h3,
.rotate-slider .h3 {
  font-size: 23px;
  font-weight: bold;
  color: #787d88;
  margin-bottom: 10px;
}

.wpex.horizontal-timeline.ex-multi-item .horizontal-nav .wpextt_templates .timeline-details a, .timeline-details h2{
	line-height: 1.5rem;
}

.group-news li:after {
  content: " | ";
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.group-news li:last-child:after {
  content: "";
}

#group-news ul {
  margin: 0;
}
#group-news .stories {
  margin-top: 15px;
}
#group-news .stories > div {
  display: none;
}
#group-news .stories > div.active {
  display: block;
}
#group-news .nav a.active {
  position: relative;
}
#group-news .nav a.active:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #13a7bf, #353584);
}

.opportunities th{
	padding: 0.5rem;
}
@media (min-width: 1024px) {
  .opportunities th{
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
.opportunities td{
	padding: 0.5rem;
}
@media (min-width: 1024px) {
  .opportunities td{
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.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-bg-opacity: 1;
	background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

#application{
	margin-top: 2rem;
	margin-bottom: 2rem;
	border-top-width: 1px;
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(156, 163, 175, var(--tw-border-opacity));
	padding-top: 2rem;
	padding-bottom: 2rem;
}

#application input{
	border-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}
#application input[type=submit]{
	display: flex;
	width: 100%;
	justify-content: center;
	--tw-bg-opacity: 1;
	background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
	padding: 0.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 1024px){
	#application input[type=submit]{
		max-width: 200px;
	}
}

.gform_wrapper.gravity-theme .gfield_label{
	font-size: 0.75rem;
	line-height: 1rem;
}

article.blog-post a {
  text-decoration: underline;
}

article.blog-post .alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

article.blog-post .alignright {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

#ppg-lg-login-trigger {
  border-color: #b1b1b1;
}

#ppg-login {
  color: #000;
}
#ppg-login-trigger {
  border-color: #b1b1b1;
}
#ppg-login .text-sm {
  font-weight: 500;
}
#ppg-login .text-sm .fa-angle-down, #ppg-login .text-sm .fa-angle-right {
  font-size: 1.3rem;
}

#ppg-login-box .pp-main, #ppg-lg-login-box .pp-main {
  background: #0a3c5e;
}
#ppg-login-box #pp-parent-login, #ppg-lg-login-box #pp-parent-login {
  background: #0c466f;
}
#ppg-login-box #pp-school-login, #ppg-lg-login-box #pp-school-login {
  background: #0c507e;
}
#ppg-login-box .sc-main, #ppg-lg-login-box .sc-main {
  background: #2b85b8;
}
#ppg-login-box #sc-parent-login, #ppg-lg-login-box #sc-parent-login {
  background: #0676b6;
}
#ppg-login-box #sc-school-login, #ppg-lg-login-box #sc-school-login {
  background: #127ebb;
}

.tl-point.wpex_point {
  color: #000 !important;
}

.wpex.horizontal-timeline.ex-multi-item .horizontal-nav li span.wpex_point i {
  color: #002e73;
  border-color: #002e73;
}

.wpex-timeline-icon i {
  color: #005cba;
}
.wpex-timeline-icon i::before {
  color: #005cba !important;
}

.wpb_gallery .flex-prev, .wpb_gallery .flex-next {
  font-size: 0;
}
.wpb_gallery .flex-prev {
  background: url("/parentpaygroup/wp-content/uploads/2021/11/leftarrow.png") no-repeat center center !important;
}
.wpb_gallery .flex-prev::before {
  display: none !important;
}
.wpb_gallery .flex-next {
  background: url("/parentpaygroup/wp-content/uploads/2021/11/rightarrow.png") no-repeat center center !important;
}
.wpb_gallery .flex-next::before {
  display: none !important;
}

.rotate-slider a {
  color: #002e73;
  font-weight: 700;
  font-size: 1rem;
}
.rotate-slider a::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\F35A";
  margin-left: 4px;
}

.wpex-timeline-list.show-icon .wpex-timeline.style-center > li .wpex-timeline-label:after {
  border-right-color: #005cba;
}

.wpex-timeline-list.show-icon .style-center > li:nth-child(odd) .wpex-timeline-label:after {
  border-left-color: #005cba;
}

.wpex-timeline-list .wpex-tltitle span, .wpex-timeline-list .wpex-leftdate, .wpex-timeline-list .wpex-rightdate {
  background: #005CBA !important;
}
.wpex-timeline-list .wp-timeline::before, .wpex-timeline-list .wp-timeline::after {
  background: #005cba !important;
}

@media (min-width: 1024px) {
  .pp-dots .wpb_column {
    z-index: 50;
  }
  .pp-dots::before {
    background: url("/wp-content/themes/parentpay/assets/img/pp-icons-bg-left.jpg") no-repeat bottom left;
    background-size: contain;
    width: 100%;
    max-width: 724px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    z-index: 40;
  }
  .pp-dots::after {
    background: url("/wp-content/themes/parentpay/assets/img/pp-icons-bg-right.jpg") no-repeat bottom right;
    background-size: contain;
    width: 100%;
    max-width: 724px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    z-index: 40;
  }

  .pp-dots-lg .wpb_column {
    z-index: 50;
  }
  .pp-dots-lg.pp-dots-lg-left::after {
    display: none !important;
  }
  .pp-dots-lg.pp-dots-lg-right::before {
    display: none !important;
  }
  .pp-dots-lg::before {
    background: url("/wp-content/themes/parentpay/assets/img/pp-dots-lg-left.png") no-repeat bottom left;
    background-size: contain;
    width: 100%;
    max-width: 724px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex !important;
    z-index: 40;
  }
  .pp-dots-lg::after {
    background: url("/wp-content/themes/parentpay/assets/img/pp-dots-lg-right.png") no-repeat bottom right;
    background-size: contain;
    width: 100%;
    max-width: 724px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex !important;
    z-index: 40;
  }

  .pp-dots-left .wpb_column {
    z-index: 50;
  }
  .pp-dots-left::before {
    background: url("/wp-content/themes/parentpay/assets/img/pp-icons-bg-left.jpg") no-repeat bottom left;
    background-size: contain;
    width: 100%;
    max-width: 724px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex !important;
    z-index: 40;
  }

  .pp-dots-right .wpb_column {
    z-index: 50;
  }
  .pp-dots-right::after {
    background: url("/wp-content/themes/parentpay/assets/img/pp-icons-bg-right.jpg") no-repeat bottom right;
    background-size: contain;
    width: 100%;
    max-width: 724px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex !important;
    z-index: 40;
  }
}
article.blog-post .social-links a {
  text-decoration: none;
}

#group-news .nav a.active:after {
  background: #002E73;
}

.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: 1100px){
	.container{
		max-width: 1100px;
	}
}
.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;
}

.static{
	position: static;
}

.fixed{
	position: fixed;
}

.absolute{
	position: absolute;
}

.relative{
	position: relative;
}

.sticky{
	position: sticky;
}

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

.top-9{
	top: 2.25rem;
}

.right-0{
	right: 0px;
}

.top-full{
	top: 100%;
}

.top-0{
	top: 0px;
}

.left-0{
	left: 0px;
}

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

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

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

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

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

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

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

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

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

.order-2{
	order: 2;
}

.order-1{
	order: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-3{
	margin-top: 0.75rem;
}

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

.block{
	display: block;
}

.flex{
	display: flex;
}

.table{
	display: table;
}

.grid{
	display: grid;
}

.hidden{
	display: none;
}

.h-auto{
	height: auto;
}

.h-32{
	height: 8rem;
}

.h-8{
	height: 2rem;
}

.h-3{
	height: 0.75rem;
}

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

.h-16{
	height: 4rem;
}

.h-9{
	height: 2.25rem;
}

.h-full{
	height: 100%;
}

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

.h-\[28px\]{
	height: 28px;
}

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

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

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

.h-screen{
	height: 100vh;
}

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

.h-72{
	height: 18rem;
}

.h-14{
	height: 3.5rem;
}

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

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

.w-60{
	width: 15rem;
}

.w-8{
	width: 2rem;
}

.w-2\/3{
	width: 66.666667%;
}

.w-3{
	width: 0.75rem;
}

.w-48{
	width: 12rem;
}

.w-full{
	width: 100%;
}

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

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

.w-9{
	width: 2.25rem;
}

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

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

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

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

.w-screen{
	width: 100vw;
}

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

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

.w-14{
	width: 3.5rem;
}

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

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

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

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

.cursor-pointer{
	cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

.justify-evenly{
	justify-content: space-evenly;
}

.gap-16{
	gap: 4rem;
}

.gap-6{
	gap: 1.5rem;
}

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

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

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

.gap-3{
	gap: 0.75rem;
}

.gap-4{
	gap: 1rem;
}

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

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

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

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

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

.overflow-hidden{
	overflow: hidden;
}

.overflow-scroll{
	overflow: scroll;
}

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

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

.rounded{
	border-radius: 0.25rem;
}

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

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

.border{
	border-width: 1px;
}

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

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

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

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

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

.border-gray-600{
	--tw-border-opacity: 1;
	border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fill-current{
	fill: currentColor;
}

.p-1{
	padding: 0.25rem;
}

.p-2{
	padding: 0.5rem;
}

.p-3{
	padding: 0.75rem;
}

.p-8{
	padding: 2rem;
}

.p-4{
	padding: 1rem;
}

.p-5{
	padding: 1.25rem;
}

.p-6{
	padding: 1.5rem;
}

.px-3{
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.py-2{
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

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

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

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

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

.px-\[23px\]{
	padding-left: 23px;
	padding-right: 23px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-3{
	padding-left: 0.75rem;
}

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

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

.text-left{
	text-align: left;
}

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

.text-right{
	text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.uppercase{
	text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.underline{
	text-decoration: underline;
}

.shadow-2xl{
	--tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

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

.transition{
	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;
}

.ease-out{
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.menu-main-menu-container{
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1px;
	display: flex;
	width: 100%;
	justify-content: center;
}
@media (min-width: 1024px){
	.menu-main-menu-container{
		width: auto;
	}
}

#menu-main-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-main-menu, #menu-bottom-menu{
		flex-direction: row;
	}
	#menu-main-menu, #menu-bottom-menu{
		border-width: 0px;
	}
	#menu-main-menu, #menu-bottom-menu{
		background-color: transparent;
	}
}
#menu-main-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-main-menu > li, #menu-bottom-menu > li{
		border-width: 0px;
	}
	#menu-main-menu > li, #menu-bottom-menu > li{
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}
#menu-main-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-main-menu > li > a, #menu-bottom-menu > li > a{
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}
}
@media (min-width: 1536px){
	#menu-main-menu > li > a, #menu-bottom-menu > li > a{
		font-size: 17px;
	}
}
#menu-main-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu{
	display: none;
	max-height: 190px;
	width: auto;
	flex-direction: column;
	flex-wrap: wrap;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
@media (min-width: 1280px){
	#menu-main-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu{
		position: absolute;
	}
	#menu-main-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu{
		margin-top: 1.25rem;
	}
}
#menu-main-menu > li .sub-menu, #menu-bottom-menu > li .sub-menu {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
#menu-main-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-main-menu > li .sub-menu li:hover a, #menu-bottom-menu > li .sub-menu li:hover a {
  color: #002E73 !important;
}
#menu-main-menu > li.button, #menu-bottom-menu > li.button{
	position: relative;
}
@media (min-width: 1280px){
	#menu-main-menu > li.button, #menu-bottom-menu > li.button{
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}
}
#menu-main-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-main-menu > li.button > a, #menu-bottom-menu > li.button > a{
		margin-left: 0px;
		margin-right: 0px;
	}
	#menu-main-menu > li.button > a, #menu-bottom-menu > li.button > a{
		margin-top: 0px;
		margin-bottom: 0px;
	}
}
#menu-main-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-main-menu > li.button > a:before, #menu-bottom-menu > li.button > a:before{
	bottom: -0.5rem !important;
	right: 1.5rem !important;
}
#menu-main-menu > li.button > a svg, #menu-bottom-menu > li.button > a svg{
	margin-left: 0.5rem;
	width: 1.25rem;
}
#menu-main-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-main-menu > li.button .sub-menu, #menu-bottom-menu > li.button .sub-menu{
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
}
#menu-main-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-main-menu > li.button .sub-menu a, #menu-bottom-menu > li.button .sub-menu a{
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
}
#menu-main-menu > li.button .sub-menu a:hover, #menu-bottom-menu > li.button .sub-menu a:hover{
	opacity: 0.9;
}
#menu-main-menu > li.button .support a, #menu-main-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-main-menu > li.button .support a:after, #menu-main-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-main-menu > li.button .support a:after, #menu-bottom-menu > li.button .support a:after {
  content: "\F1CD";
}
#menu-main-menu > li.button .login a:after, #menu-bottom-menu > li.button .login a:after {
  font-weight: 300;
  content: "\F2C2";
}
#menu-main-menu > li.active .sub-menu, #menu-bottom-menu > li.active .sub-menu{
	display: flex;
	flex-direction: column;
}
#menu-main-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-main-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-main-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-main-menu > li.menu-item-has-children:hover > a:before, #menu-bottom-menu > li.menu-item-has-children:hover > a:before{
		display: block;
	}
}
#menu-main-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);
}

#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;
	}
}

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

#menu-footer-menu{
	display: flex;
	align-items: center;
}

#menu-footer-menu .menu-item{
	position: relative;
	margin-right: 0.75rem;
	height: 100%;
	padding-right: 0.75rem;
}

#main-header a, #main-header a:hover, #main-header a:active, #main-header button {
  outline: none !important;
  border: 0 !important;
}

.heading {
  height: 344px;
  display: flex;
  align-items: center;
}
.heading h1 {
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 12px;
  font-size: 3rem;
  line-height: 1;
}
.heading h1, .heading p {
  color: white;
}

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

.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;
  }
}
.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;
}

@-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;
	        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hover\:border-white:hover{
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.hover\:text-\[\#002E73\]:hover{
	--tw-text-opacity: 1;
	color: rgba(0, 46, 115, var(--tw-text-opacity));
}
.hover\:underline:hover{
	text-decoration: underline;
}
@media (min-width: 640px){
	.sm\:py-20{
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.sm\:px-6{
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.sm\:text-4xl{
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
	.sm\:text-3xl{
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
}
@media (min-width: 768px){
	.md\:col-span-2{
		grid-column: span 2 / span 2;
	}
	.md\:h-\[380px\]{
		height: 380px;
	}
	.md\:h-full{
		height: 100%;
	}
	.md\:min-h-\[320px\]{
		min-height: 320px;
	}
	.md\:w-full{
		width: 100%;
	}
	.md\:w-\[400px\]{
		width: 400px;
	}
	.md\:max-w-full{
		max-width: 100%;
	}
	.md\:flex-shrink-0{
		flex-shrink: 0;
	}
	.md\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.md\:flex-row{
		flex-direction: row;
	}
}
@media (min-width: 1024px){
	.lg\:col-span-3{
		grid-column: span 3 / span 3;
	}
	.lg\:mb-0{
		margin-bottom: 0px;
	}
	.lg\:block{
		display: block;
	}
	.lg\:inline-block{
		display: inline-block;
	}
	.lg\:flex{
		display: flex;
	}
	.lg\:hidden{
		display: none;
	}
	.lg\:h-12{
		height: 3rem;
	}
	.lg\:min-h-\[420px\]{
		min-height: 420px;
	}
	.lg\:w-1\/4{
		width: 25%;
	}
	.lg\:w-full{
		width: 100%;
	}
	.lg\:w-auto{
		width: auto;
	}
	.lg\:w-\[650px\]{
		width: 650px;
	}
	.lg\:w-96{
		width: 24rem;
	}
	.lg\:w-1\/2{
		width: 50%;
	}
	.lg\:max-w-\[200px\]{
		max-width: 200px;
	}
	.lg\:grid-cols-3{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.lg\:flex-row{
		flex-direction: row;
	}
	.lg\:justify-between{
		justify-content: space-between;
	}
	.lg\:p-5{
		padding: 1.25rem;
	}
	.lg\:p-10{
		padding: 2.5rem;
	}
	.lg\:px-8{
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.lg\:pl-0{
		padding-left: 0px;
	}
	.lg\:text-left{
		text-align: left;
	}
}
@media (min-width: 1280px){
	.xl\:static{
		position: static;
	}
	.xl\:relative{
		position: relative;
	}
	.xl\:sticky{
		position: sticky;
	}
	.xl\:top-auto{
		top: auto;
	}
	.xl\:top-0{
		top: 0px;
	}
	.xl\:z-\[31\]{
		z-index: 31;
	}
	.xl\:order-none{
		order: 0;
	}
	.xl\:order-last{
		order: 9999;
	}
	.xl\:mx-8{
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.xl\:mb-0{
		margin-bottom: 0px;
	}
	.xl\:ml-0{
		margin-left: 0px;
	}
	.xl\:block{
		display: block;
	}
	.xl\:flex{
		display: flex;
	}
	.xl\:hidden{
		display: none;
	}
	.xl\:h-0{
		height: 0px;
	}
	.xl\:h-\[88px\]{
		height: 88px;
	}
	.xl\:h-11{
		height: 2.75rem;
	}
	.xl\:h-24{
		height: 6rem;
	}
	.xl\:w-8\/12{
		width: 66.666667%;
	}
	.xl\:w-\[calc\(25\%-35px\)\]{
		width: calc(25% - 35px);
	}
	.xl\:w-auto{
		width: auto;
	}
	.xl\:w-4\/12{
		width: 33.333333%;
	}
	.xl\:flex-row{
		flex-direction: row;
	}
	.xl\:flex-col{
		flex-direction: column;
	}
	.xl\:items-start{
		align-items: flex-start;
	}
	.xl\:gap-\[35px\]{
		gap: 35px;
	}
	.xl\:border-none{
		border-style: none;
	}
	.xl\:p-0{
		padding: 0px;
	}
	.xl\:py-\[42px\]{
		padding-top: 42px;
		padding-bottom: 42px;
	}
	.xl\:px-8{
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.xl\:pb-0{
		padding-bottom: 0px;
	}
	.xl\:shadow{
		--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);
	}
}