@charset "UTF-8";
@tailwind base;
html {
  text-rendering: optimizeLegibility;
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  html {
    font-size: calc(0.3205128205vw + 12.7179487179px);
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  font-style: normal;
  font-weight: 400;
  font-family: soleil, sans-serif;
  color: #57677A;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
body > main{
  flex: 1 1 0%;
}

hr{
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 30;
  transition: height 0.25s;
}

.footer-disclaimer a {
  text-decoration: underline;
}

footer hr {
  height: 2px;
  background-color: #fff;
  border: 0;
  padding: 0;
  margin: 1rem 0;
}

footer.version-2 a {
  color: #6A94CF;
}
footer.version-2 a:hover {
  text-decoration: underline;
}
footer.version-2 .text-med-gray {
  color: #9E9E9E;
}
footer.version-2 #footer-svg {
  max-width: 245px;
}
footer.version-2 #footer-svg > svg {
  max-width: 100%;
}
footer.version-2 .extra-links {
  line-height: 1rem;
}
footer.version-2 .extra-links span {
  border-left: 1px solid;
  display: inline-block;
  margin-left: 7px;
}
footer.version-2 .extra-links span:first-child {
  border-left: 0;
}
footer.version-2 .extra-links span a {
  display: inline-block;
  margin-left: 7px;
}
footer.version-2 hr {
  opacity: 0.1;
}
footer.version-2 .footer-border-bottom {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 640px) {
  footer.version-2 .footer-border-bottom.hide-mobile-border {
    border-bottom: 0;
  }
  footer.version-2 .footer-border-bottom-mobile {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }
}
footer.version-2 #tag-logo {
  max-width: 245px;
}
footer.version-2 .hover-link {
  color: #fff;
  transition: opacity 0.5s;
}
footer.version-2 .hover-link:hover {
  opacity: 0.5;
  text-decoration: none;
}
footer.version-2 .contact-line > span {
  display: inline-block;
  width: 0.938rem;
}

.debug * {
  outline: 1px solid red;
}

.max-width{
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}

.max-content {
  max-width: 960px;
  margin: 0 auto;
}

/* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.container{
  width: 100%;
}

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

.pagination{
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.pagination .page-item .page-link{
  padding: .75rem;
  display: block;
  text-decoration: none;
  border-top-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  background-color: #ffffff;
  color: #2779BD;
}

.pagination .page-item .page-link:hover{
  background-color: #f1f5f8;
}

.pagination .page-item:first-child .page-link{
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.pagination .page-item:last-child .page-link{
  border-right-width: 1px;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.pagination .page-item.active .page-link{
  background-color: #2779BD;
  border-color: #2779BD;
  color: #ffffff;
}

.pagination .page-item.disabled .page-link{
  background-color: #f1f5f8;
  color: #8795a1;
}
@tailwind base;
/* purgecss end ignore */
@tailwind base;
@-webkit-keyframes loading-spinner {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loading-spinner {
  to {
    transform: rotate(360deg);
  }
}
.loading-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.15rem solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: loading-spinner 0.75s linear infinite;
          animation: loading-spinner 0.75s linear infinite;
}

/* purgecss end ignore */
@tailwind base;
.site-name svg {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 72px;
}

/* purgecss start ignore */
.product-section:first-child {
  margin-top: 0;
}

.bg-primary + .bg-subtle,
.bg-primary + .bg-secondary,
.bg-primary + .bg-third,
.bg-primary + .bg-fourth {
  margin-top: -2rem;
}
@media (min-width: 768px) {
  .bg-primary + .bg-subtle,
.bg-primary + .bg-secondary,
.bg-primary + .bg-third,
.bg-primary + .bg-fourth {
    margin-top: -4rem;
  }
}

.bg-subtle + .bg-subtle {
  margin-top: -4rem;
}

/* purgecss end ignore */
@tailwind base;
/* purgecss start ignore */
/* purgecss end ignore */
@tailwind base;
/* purgecss start ignore */
/* purgecss end ignore */
@tailwind base;
/* purgecss start ignore */
/* purgecss end ignore */
@tailwind base;
/* purgecss start ignore */
.columns{
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .cards .card, 
.columns.cards .card{
    width: 100%;
  }
  .type-card.image {
    min-height: auto !important;
    margin-bottom: 1rem !important;
  }
  .type-card.image > .inner {
    min-height: 250px;
  }
}
@media (min-width: 768px) {
  .columns{
    margin-left: -1rem;
    margin-right: -1rem;
    flex-wrap: nowrap;
  }
  .columns > *{
    margin-bottom: 0px;
    flex: 1 1 0%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.type-card.image {
  min-height: 220px;
}
.type-card.border-animation {
  overflow: hidden;
}
.type-card .inner {
  border-radius: 5px;
  display: flex;
  height: 100%;
  flex-direction: column;
}
.type-card .inner :last-child {
  margin-bottom: 0;
}
/* purgecss end ignore */
/* ! tailwindcss v3.1.6 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  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"; /* 4 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
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)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
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;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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;
}
/*
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)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
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 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
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;
}
/* purgecss start ignore */
h1, .h1 {
    font-size: 24px;
  }
@media screen and (min-width: 400px) {
    h1, .h1 {
      font-size: calc(3vw + 12px);
    }
  }
@media screen and (min-width: 1200px) {
    h1, .h1 {
      font-size: 48px;
    }
  }
h2,
.h2 {
    font-size: 22px;
  }
@media screen and (min-width: 400px) {
    h2,
.h2 {
      font-size: calc(2.25vw + 13px);
    }
  }
@media screen and (min-width: 1200px) {
    h2,
.h2 {
      font-size: 40px;
    }
  }
h3, .h3 {
    font-size: 20px;
  }
@media screen and (min-width: 400px) {
    h3, .h3 {
      font-size: calc(1.5vw + 14px);
    }
  }
@media screen and (min-width: 1200px) {
    h3, .h3 {
      font-size: 32px;
    }
  }
h4, .h4 {
    font-size: 18px;
  }
@media screen and (min-width: 400px) {
    h4, .h4 {
      font-size: calc(0.75vw + 15px);
    }
  }
@media screen and (min-width: 1200px) {
    h4, .h4 {
      font-size: 24px;
    }
  }
h5, .h5 {
    font-size: 16px;
  }
@media screen and (min-width: 400px) {
    h5, .h5 {
      font-size: calc(0.25vw + 15px);
    }
  }
@media screen and (min-width: 1200px) {
    h5, .h5 {
      font-size: 18px;
    }
  }
h6, .h6 {
    font-size: 14px;
  }
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }
main h1, main h2, main h3, main h4, main h5, main h6 {
    color: #333333;
  }
.h2,
.h3,
.h4 {
    font-weight: 700;
    line-height: 1.25;
    color: #333333;
  }
.hero-title .sub-title, 
.hero-title .subtitle{
  display: block;
  font-weight: 300;
    font-size: 20px;
}
@media screen and (min-width: 400px) {
    .hero-title .sub-title,
.hero-title .subtitle {
      font-size: calc(1.5vw + 14px);
    }
  }
@media screen and (min-width: 1200px) {
    .hero-title .sub-title,
.hero-title .subtitle {
      font-size: 32px;
    }
  }
.section-title{
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.375;
    color: #767676;
    font-size: 22px;
}
@media screen and (min-width: 400px) {
    .section-title {
      font-size: calc(1.75vw + 15px);
    }
  }
@media screen and (min-width: 1200px) {
    .section-title {
      font-size: 36px;
    }
  }
.section-pre-title{
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
main {
    line-height: 1.875;
  }
main p{
  margin-bottom: 1rem;
}
main a{
  --tw-text-opacity: 1;
  color: rgb(43 108 176 / var(--tw-text-opacity));
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
main a:hover, 
main a:focus{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.entry-detail li > p:first-of-type,
.page-detail li > p:first-of-type {
    margin-bottom: 0;
  }
.entry-detail ul, 
.page-detail ul{
  list-style-type: disc;
  padding-left: 2rem;
}
.entry-detail > ul, 
.page-detail > ul{
  margin-bottom: 1rem;
}
.entry-detail ol, 
.page-detail ol{
  margin-bottom: 1rem;
  list-style-type: decimal;
  padding-left: 2rem;
}
.entry-detail li, 
.page-detail li{
  margin-bottom: 0.5rem;
  line-height: 1.375;
}
.entry-detail li ul, 
.page-detail li ul{
  margin-top: 0.5rem;
}
.section-nav ul{
  margin-bottom: 0px;
  list-style-type: none;
  padding-left: 0px;
}
blockquote{
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  padding-left: 1rem;
}
table{
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
table tr th{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-weight: 700;
}
table tr td{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.checkmarks ul, 
.dashes ul{
  list-style-type: none;
  padding-left: 0px;
}
.checkmarks li {
    padding-left: 20px;
  }
.checkmarks li::before {
    content: "✓";
    color: #fd7427;
    width: 10px;
    margin-left: -20px;
    margin-right: 5px;
  }
.dashes li {
    padding-left: 20px;
  }
.dashes li::before {
    content: "–";
    color: #fd7427;
    width: 10px;
    margin-left: -20px;
    margin-right: 5px;
  }
/* purgecss start ignore */
.btn{
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(43 108 176 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(43 108 176 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
    transition: all 0.2s;
}
.btn.text-dark {
    color: #57677A;
  }
.btn:hover{
  --tw-border-opacity: 1;
  border-color: rgb(49 130 206 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(49 130 206 / var(--tw-bg-opacity));
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.btn[disabled]{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.btn[disabled]:hover {
    cursor: not-allowed;
  }
.btn.text-light {
    color: #fff !important;
  }
.btn.text-dark {
    color: #0959b0 !important;
  }
input[type=submit].btn:hover {
    cursor: pointer;
  }
.btn-sm{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
    line-height: 1.15;
}
.btn-hollow{
  --tw-border-opacity: 1;
  border-color: rgb(43 108 176 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(43 108 176 / var(--tw-text-opacity));
}
.btn-hollow:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(43 108 176 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn.active{
  --tw-border-opacity: 1;
  border-color: rgb(43 108 176 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(43 108 176 / var(--tw-text-opacity));
}
.btn.active:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(44 82 130 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn-primary{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn-primary:hover,  .btn-primary:active{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.btn-nav{
  margin: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
    line-height: 1.15;
}
.btn-nav:hover,  .btn-nav:active{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn-nav.btn-hollow{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
    line-height: 1.15;
}
.btn-nav.btn-hollow:hover,  .btn-nav.btn-hollow:active{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn-mobile-nav{
  margin-top: 0px;
  display: inline-block;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn-mobile-nav:hover,  .btn-mobile-nav:active{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.nav-item-1 {
    position: relative;
    display: block;
  }
.nav-item-1:hover {
    cursor: pointer;
  }
.nav-item-1:hover .nav-list-2{
  z-index: 10;
  display: block;
}
.nav-list-2{
  position: absolute;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    top: auto;
    min-width: 200px;
    display: none;
}
.nav-item-2{
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.nav-anchor-1{
  border-bottom-width: 4px;
  border-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.nav-anchor-2{
  display: block;
  white-space: nowrap;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.nav-anchor-2:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(225 225 225 / var(--tw-bg-opacity));
}
.nav-anchor-1.active,
.nav-anchor-1.active-tree,
.nav-anchor-1:hover,
.nav-anchor-1:focus {
    border-color: #0959b0;
  }
.nav-mobile {
    position: fixed;
    right: 0;
    width: 90vw;
    max-width: 400px;
    transform: translateX(100%);
    top: 4.6rem;
    bottom: 0;
    transition: all 0.25s;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
  }
.nav-mobile.open {
    transform: translateX(0);
  }
.nav-mobile a,
.nav-mobile input.btn-mobile-nav,
.nav-mobile button.btn-mobile-nav {
    font-size: 20px;
  }
.nav-mobile a {
    color: #fff;
  }
.nav-mobile .toggle span {
    display: block;
    transform: rotate(-270deg);
    transition: all 0.25s;
  }
.nav-mobile .toggle.open span {
    transform: rotate(-90deg);
  }
.nav-mobile-mask {
    position: fixed;
    top: calc(4rem + 1px);
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
  }
@media (min-width: 1024px) {
    .nav-mobile-mask {
      display: none !important;
    }
  }
a.external-nav-link {
    line-height: 150%;
  }
a.external-nav-link span {
    font-weight: 400;
    font-size: 80%;
  }
.section-nav{
  border-radius: 0.5rem;
  --tw-border-opacity: 1;
  border-color: rgb(194 202 211 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity));
  padding: 0.5rem;
}
.section-nav > ul > li ul li{
  padding-left: 0.75rem;
}
.section-nav > ul > li ul li:last-child{
  padding-bottom: 0.75rem;
}
.section-nav > ul:last-child,
.section-nav li:last-child {
    margin-bottom: 0;
  }
@media (min-width: 1024px) {
    .section-nav{
    display: block;
    padding: 1rem;
  }
  }
.section-nav a:hover {
    text-decoration: none;
  }
@media screen and (max-width: 1023px) {
    .section-nav {
      position: absolute;
    }
    .section-nav.open {
      max-height: 45vh;
      overflow-y: scroll;
      width: 100%;
      z-index: 5;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-width: 1px;
      --tw-border-opacity: 1;
      border-color: rgb(194 202 211 / var(--tw-border-opacity));
      --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
      --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
      box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
  }
.section-nav-toggle{
  display: flex;
  height: 2.5rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(194 202 211 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.section-nav-toggle.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
.section-nav-toggle.open .svg-icon {
    transform: rotate(180deg);
  }
@media (min-width: 1024px) {
    #client-connector{
    position: absolute;
    z-index: 10;
      pointer-events: none;
      transform: translateY(-115%);
      transition: all 0.25s ease-in-out;
      right: 1rem;
  }
    #client-connector .inner{
    display: flex;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
      overflow: hidden;
      width: 56rem;
      pointer-events: initial;
  }
    #client-connector.open {
      transform: translateY(0);
    }
    .connector-item {
      background-color: transparent;
      border-radius: 4px;
      transition: background-color 0.125s ease-in-out;
    }
    .connector-item svg {
      opacity: 0;
      transition: opacity 0.125s ease-in-out;
    }
    .connector-item:hover {
      background-color: #fff;
      cursor: pointer;
    }
    .connector-item:hover svg {
      opacity: 1;
    }
  }
@media (min-width: 1280px) {
    #client-connector {
      right: calc(50vw - 624px);
    }
  }
.client-connector-mask {
    display: none;
  }
@media (min-width: 1024px) {
    .client-connector-mask {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.05);
      z-index: 1;
    }
  }
.prospect-form{
  border-bottom-width: 4px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  border-color: #0959b0;
}
.prospect-form label{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.prospect-form .form-item label{
  text-transform: uppercase;
    font-weight: 500;
}
.prospect-form .form-item.required label::after {
    content: " *";
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity));
  }
.prospect-form textarea, 
.prospect-form input[type=text]{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
  padding: 0.5rem;
    border-radius: 4px;
}
.prospect-form .error textarea, 
.prospect-form .error input[type=text]{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity));
  padding: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.prospect-form .error textarea::-moz-placeholder, .prospect-form .error input[type=text]::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.prospect-form .error textarea::placeholder, 
.prospect-form .error input[type=text]::placeholder{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.prospect-form .error-msg{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}
.form-row{
  display: flex;
  flex-direction: column;
}
.form-item{
  margin-bottom: 0.75rem;
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 768px) {
    .form-row{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    flex-direction: row;
  }
    .form-item{
    width: 50%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  }
.max-h-img {
    max-height: 512px;
  }
.max-h-portrait {
    max-height: 256px;
  }
.logo {
    max-height: 4.5rem;
  }
.vendor-logo {
    max-height: 1.75rem;
  }
.member-logo {
    max-height: 1.75rem;
  }
.member-logo.portrait {
    max-height: 4rem;
  }
@media (min-width: 1024px) {
    .max-h-portrait {
      max-height: 384px;
    }
    .product-detail .max-h-portrait {
      max-height: 256px;
    }
  }
#hero-scroll-to {
    height: 0;
  }
@-webkit-keyframes UpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-0.25em);
    }
  }
@keyframes UpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-0.25em);
    }
  }
#hero-scroll {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: none;
    bottom: 0;
    z-index: 5;
    width: 50px;
    -webkit-animation: UpDown 1s linear infinite;
            animation: UpDown 1s linear infinite;
  }
.parallax_big_wrapper {
    overflow: hidden;
  }
.parallax__wrapper {
    overflow-x: hidden;
    perspective: 2px;
    position: relative;
  }
.parallax {
    position: relative;
    height: 100%;
    overflow: hidden;
    /* For text formatting. */
    display: flex;
    align-items: center;
    justify-content: center;
  }
.parallax::after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
.bg-image-container [class*=overlay-]::before,
.parallax_big_wrapper [class*=overlay-]::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
.bg-image-container .overlay-subtle::before,
.parallax_big_wrapper .overlay-subtle::before {
    background-color: rgba(0, 0, 0, 0.15);
  }
.bg-image-container .overlay-dark::before,
.parallax_big_wrapper .overlay-dark::before {
    background-color: rgba(0, 0, 0, 0.25);
  }
.bg-image-container .overlay-darker::before,
.parallax_big_wrapper .overlay-darker::before {
    background-color: rgba(0, 0, 0, 0.45);
  }
.bg-image-container .overlay-darkest::before,
.parallax_big_wrapper .overlay-darkest::before {
    background-color: rgba(0, 0, 0, 0.65);
  }
.bg-image-container .overlay-white::before,
.parallax_big_wrapper .overlay-white::before {
    background-color: rgba(255, 255, 255, 0.25);
  }
.bg-image-container .overlay-whiter::before,
.parallax_big_wrapper .overlay-whiter::before {
    background-color: rgba(255, 255, 255, 0.45);
  }
.bg-image-container .overlay-whitest::before,
.parallax_big_wrapper .overlay-whitest::before {
    background-color: rgba(255, 255, 255, 0.65);
  }
.bg-image-container {
    position: relative;
    transition: padding 0.15s ease-in-out;
  }
.bg-image-container .bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
.bg-image-container .bg-image + div {
    position: relative;
  }
.bg-image.bg-dark .title-text > *{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.bg-dark .hero-title {
    text-shadow: 1px 1px 5px #949ca6;
  }
.bg-image-container.no-content {
    min-height: 25vh;
  }
/**
  Parallax stuff
  **/
@media (min-width: 768px) {
    #hero-scroll {
      display: inline-block;
    }
    .has-announcement .full-page-text.full-height,
.has-announcement .bg-image-container.full-height,
.has-announcement .parallax__wrapper.full-height,
.parallax_big_wrapper {
      height: calc(100vh - 130px);
    }
    .full-page-text.full-height,
.bg-image-container.full-height,
.parallax__wrapper.full-height,
.parallax_big_wrapper {
      height: calc(100vh - 80px);
    }
    .parallax::after {
      background-attachment: fixed;
      transform: translateZ(-1px) scale(2);
    }
  }
@media screen and (min-width: 1800px) {
    picture.banner img {
      max-height: 600px;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
    .bg-image-container.no-content {
      max-height: 600px;
    }
  }
.full-bleed {
    width: calc(100vw - 1rem);
    margin-left: 50%;
    transform: translateX(-50%);
  }
.full-bleed img {
    max-width: none;
    width: 100%;
  }
figure.lazy {
    overflow: hidden;
  }
figure[class*=overlay-] {
    position: relative;
  }
figure[class*=overlay-]::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
  }
figure.overlay-dark::before {
    background-color: rgba(0, 0, 0, 0.25);
  }
.aspect-ratio-16-9 {
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
    position: relative;
  }
.aspect-ratio-16-9 img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
.cld-responsive {
    transition: filter 0.15s;
  }
.cld-responsive.lazy {
    filter: blur(1px);
    transition: filter 0.15s;
  }
.img-box {
    position: relative;
    padding: 2rem;
  }
.img-box img {
    position: relative;
  }
.img-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #0959b0;
    opacity: 0.25;
    width: 90%;
    height: 100%;
  }
.img-box-left::before {
    left: 0;
  }
.img-mask {
    position: relative;
    height: 40vh;
    max-height: 350px;
    overflow: hidden;
  }
.img-mask::before {
    content: "";
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  }
.bg-subtle .img-mask::before {
    background: rgb(249, 250, 251);
    background: linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgb(249, 250, 251) 100%);
  }
@media (min-width: 768px) {
    .img-mask {
      height: auto;
      max-height: none;
    }
    .img-mask::before {
      display: none;
    }
  }
.bg-image .inner{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.inner .btn{
  align-self: flex-start;
}
.inner.text-center .btn{
  align-self: center;
}
.cards .type-card{
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cards .type-card .inner{
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1rem;
}
.cards .type-card:not(.border-animation) .inner{
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(225 225 225 / var(--tw-border-opacity));
}
.cards .type-card.picture-border .inner{
  border-width: 8px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.cards .teaser {
    position: relative;
  }
.cards .teaser:not(.border-animation) .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
    height: 5px;
    border-top: 5px solid;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
.teaser{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.teaser.border-animation:hover {
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
  }
.teaser.border-animation:hover::before, .teaser.border-animation:hover::after {
    border-radius: 10px;
    content: "";
    position: absolute;
  }
.teaser.border-animation:hover::before {
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#2b6cb0, #2b6cb0), linear-gradient(#ffffff, #ffffff), linear-gradient(#2b6cb0, #2b6cb0), linear-gradient(#ffffff, #ffffff);
    -webkit-animation: rotate 4s linear infinite;
            animation: rotate 4s linear infinite;
  }
.teaser.border-animation:hover::after {
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border-radius: 5px;
    background: #fff;
  }
@-webkit-keyframes rotate {
    100% {
      transform: rotate(1turn);
    }
  }
@keyframes rotate {
    100% {
      transform: rotate(1turn);
    }
  }
.cta-link {
    position: relative;
  }
.cta-link.teaser:hover .inner::before {
    border-top-color: #0959b0;
  }
.cta-link a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
  }
.border-animation {
    position: relative;
  }
.top-icon svg {
    margin: 20px auto 20px;
    top: -0.125em;
  }
.top-icon h3.h4 {
    min-height: 130px;
    margin-bottom: 0;
  }
.card.type-listCard{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  height: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  padding: 2rem;
    box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.15);
}
.type-card.image .card-text {
    z-index: 5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    opacity: 0;
  }
.type-card.image .card-text > div {
    flex-grow: 1;
  }
@media screen and (min-width: 768px) {
    .type-card.image:hover figure {
      z-index: 0;
    }
    .type-card.image:hover .card-text {
      opacity: 1;
    }
    .type-card.image:hover .card-title {
      display: none;
    }
  }
@media screen and (max-width: 767px) {
    .type-card.image.active-card figure {
      z-index: 0;
    }
    .type-card.image.active-card .card-text {
      opacity: 1;
    }
    .type-card.image.active-card .card-title {
      display: none;
    }
    .type-card.image a {
      touch-action: auto;
    }
  }
.type-card.image .white-bg {
    background-color: rgba(255, 255, 255, 0.75);
  }
.type-card.image .dark-bg {
    background-color: rgba(51, 51, 51, 0.35);
  }
.type-card.image .dark-bg div, .type-card.image .dark-bg a {
    color: #ffffff;
  }
.type-card.image .dark-bg .card-text {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  }
.type-card.image .inner {
    position: relative;
    align-items: stretch;
  }
.type-card.image .inner .card-title {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    font-size: 1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  }
.type-card.image .inner figure {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
.product-detail .card.type-listCard{
  margin-left: 0px;
  margin-right: 0px;
  align-self: stretch;
  border-style: none;
  background-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0px;
  padding-bottom: 0px;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.product-detail .card.type-listCard .inner{
  height: 100%;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(225 225 225 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 1rem;
}
.card.type-listCard img{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
    width: 75%;
    max-width: 225px;
}
.bg-dark * {
    color: #fff;
  }
.bg-dark * .btn{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.bg-dark * .btn:hover{
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
    .bg-offset {
      padding-bottom: 0 !important;
      background-color: transparent;
      position: relative;
      margin-top: 4rem;
      margin-bottom: 4rem;
    }
    .bg-offset > * {
      position: relative;
    }
    .bg-offset::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: calc(50vw - 12rem);
    }
    .bg-primary.bg-offset::before {
      background-color: #0959b0;
    }
    .bg-primary.bg-offset * {
      color: #fff;
    }
    .bg-primary.bg-offset .btn{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity));
  }
    .bg-primary.bg-offset .btn:hover{
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity));
  }
  }
.bg-subtle{
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
}
.bg-subtle .h1 {
    color: #57677A;
  }
.full-bleed-bg {
    position: relative;
  }
.full-bleed-bg::before {
    content: "";
    position: absolute;
    width: 100vw;
    top: 0;
    bottom: 0;
    background-color: #F7F7F7;
    margin-left: 50%;
    transform: translateX(-50%);
  }
.full-bleed-bg > * {
    position: relative;
  }
/* purgecss end ignore */
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --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-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(66 153 225 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::-webkit-backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --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-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(66 153 225 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --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-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(66 153 225 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
/* purgecss start ignore */
.section.bg-subtle:last-child {
  margin-bottom: 0;
}

/* purgecss start ignore */
.text-primary {
  color: #0959b0;
}

.border-primary {
  border-color: #0959b0;
}

.bg-primary {
  background-color: #0959b0;
}

.text-accent {
  color: #fd7427;
}

.border-accent {
  border-color: #fd7427;
}

.bg-accent {
  background-color: #fd7427;
}

.type-banner.btm-pull {
  margin-bottom: -5rem;
}

.iframe-container {
  min-height: 400px;
}
.iframe-container .relative {
  overflow: hidden;
}

.responsive-container {
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.responsive-container.ratio-16-9 {
  padding-bottom: 56.25%;
}
.responsive-container.ratio-4-3 {
  padding-bottom: 75%;
}
.responsive-container.ratio-3-2 {
  padding-bottom: 66.66%;
}
.responsive-container.ratio-8-5 {
  padding-bottom: 62.5%;
}

.responsive-container iframe,
.responsive-container .wistia_embed {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.cta-container {
  display: none;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hide-iframe-mobile {
    padding-bottom: 0;
    min-height: 0;
  }
  .hide-iframe-mobile * {
    height: 0 !important;
  }
  .hide-iframe-mobile iframe {
    display: none;
  }
  .cta-container {
    display: block;
  }
}
.svg-icon {
  display: inline;
  vertical-align: baseline;
  position: relative;
  top: 0.125em;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
  fill: currentColor;
  transition: fill 0.3s;
}

.pagination .page-item .page-link {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.title-white h2, 
.title-white h3, 
.title-white h4, 
.title-white p, 
.title-white a, 
.title-white li, 
.title-white .text-primary{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.blank-space-placeholder::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.people-row a {
  color: inherit;
}
.people-row img {
  max-width: 280px;
}

.type-cta figure {
  padding: 1.25em 0;
}

.hero-shadow {
  text-shadow: 2px 2px 5px #000000 !important;
}

.hero-image .banner img{
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.left-angle svg {
  left: -28%;
}

[class*=overlay-]::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* purgecss end ignore */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.top-0{
  top: 0px;
}
.right-0{
  right: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-full{
  left: 100%;
}
.top-full{
  top: 100%;
}
.right-full{
  right: 100%;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-50{
  z-index: 50;
}
.order-2{
  order: 2;
}
.order-1{
  order: 1;
}
.col-span-1{
  grid-column: span 1 / span 1;
}
.float-right{
  float: right;
}
.float-left{
  float: left;
}
.m-0{
  margin: 0px;
}
.m-auto{
  margin: auto;
}
.-m-3{
  margin: -0.75rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-auto{
  margin-top: auto;
  margin-bottom: auto;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mx-0{
  margin-left: 0px;
  margin-right: 0px;
}
.my-0{
  margin-top: 0px;
  margin-bottom: 0px;
}
.my-16{
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.-mx-4{
  margin-left: -1rem;
  margin-right: -1rem;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.-mx-6{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.-my-2{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-4{
  margin-right: 1rem;
}
.ml-auto{
  margin-left: auto;
}
.mb-8{
  margin-bottom: 2rem;
}
.mt-0{
  margin-top: 0px;
}
.mt-2{
  margin-top: 0.5rem;
}
.mb-11{
  margin-bottom: 2.75rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-12{
  margin-top: 3rem;
}
.-mb-20{
  margin-bottom: -5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mb-20{
  margin-bottom: 5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.-mt-1{
  margin-top: -0.25rem;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mt-4{
  margin-top: 1rem;
}
.-mr-32{
  margin-right: -8rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.-mt-2{
  margin-top: -0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.-mr-2{
  margin-right: -0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.-mr-1{
  margin-right: -0.25rem;
}
.mr-5{
  margin-right: 1.25rem;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.flow-root{
  display: flow-root;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-full{
  height: 100%;
}
.h-10{
  height: 2.5rem;
}
.h-1\/3{
  height: 33.333333%;
}
.h-6{
  height: 1.5rem;
}
.h-4{
  height: 1rem;
}
.h-56{
  height: 14rem;
}
.h-3{
  height: 0.75rem;
}
.h-8{
  height: 2rem;
}
.h-12{
  height: 3rem;
}
.h-64{
  height: 16rem;
}
.h-16{
  height: 4rem;
}
.h-24{
  height: 6rem;
}
.h-5{
  height: 1.25rem;
}
.h-72{
  height: 18rem;
}
.h-48{
  height: 12rem;
}
.max-h-6{
  max-height: 1.5rem;
}
.max-h-8{
  max-height: 2rem;
}
.max-h-screen{
  max-height: 100vh;
}
.w-1\/3{
  width: 33.333333%;
}
.w-2\/3{
  width: 66.666667%;
}
.w-1\/2{
  width: 50%;
}
.w-1\/5{
  width: 20%;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.w-10{
  width: 2.5rem;
}
.w-2\/5{
  width: 40%;
}
.w-1\/6{
  width: 16.666667%;
}
.w-6{
  width: 1.5rem;
}
.w-4{
  width: 1rem;
}
.w-48{
  width: 12rem;
}
.w-screen{
  width: 100vw;
}
.w-3{
  width: 0.75rem;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-5{
  width: 1.25rem;
}
.min-w-\[30\%\]{
  min-width: 30%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-screen-xl{
  max-width: 1280px;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-none{
  flex: none;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-grow{
  flex-grow: 1;
}
.origin-top-right{
  transform-origin: top right;
}
.translate-x-1\/2{
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), 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));
}
.translate-y-1{
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), 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));
}
.translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), 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));
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), 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));
}
.-translate-y-1\/4{
  --tw-translate-y: -25%;
  transform: translate(var(--tw-translate-x), 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));
}
.translate-y-16{
  --tw-translate-y: 4rem;
  transform: translate(var(--tw-translate-x), 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));
}
.-translate-y-3\/4{
  --tw-translate-y: -75%;
  transform: translate(var(--tw-translate-x), 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));
}
.translate-x-64{
  --tw-translate-x: 16rem;
  transform: translate(var(--tw-translate-x), 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));
}
.-translate-y-8{
  --tw-translate-y: -2rem;
  transform: translate(var(--tw-translate-x), 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));
}
.transform{
  transform: translate(var(--tw-translate-x), 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));
}
.list-inside{
  list-style-position: inside;
}
.list-decimal{
  list-style-type: decimal;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-stretch{
  align-items: stretch;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-around{
  justify-content: space-around;
}
.gap-3{
  gap: 0.75rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-8{
  gap: 2rem;
}
.gap-4{
  gap: 1rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-12{
  gap: 3rem;
}
.gap-16{
  gap: 4rem;
}
.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-y-10{
  row-gap: 2.5rem;
}
.gap-y-7{
  row-gap: 1.75rem;
}
.gap-y-12{
  row-gap: 3rem;
}
.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.gap-y-6{
  row-gap: 1.5rem;
}
.gap-y-8{
  row-gap: 2rem;
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-x-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.self-center{
  align-self: center;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-scroll{
  overflow-x: scroll;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-bl-lg{
  border-bottom-left-radius: 0.5rem;
}
.border-2{
  border-width: 2px;
}
.border{
  border-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-b-4{
  border-bottom-width: 4px;
}
.border-t{
  border-top-width: 1px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-gray-light{
  --tw-border-opacity: 1;
  border-color: rgb(225 225 225 / var(--tw-border-opacity));
}
.border-transparent{
  border-color: transparent;
}
.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
}
.border-gray-dark{
  --tw-border-opacity: 1;
  border-color: rgb(194 202 211 / var(--tw-border-opacity));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}
.bg-footer{
  --tw-bg-opacity: 1;
  background-color: rgb(36 36 36 / var(--tw-bg-opacity));
}
.bg-gray-lightest{
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
}
.bg-gray-lighter{
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-red-200{
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity));
}
.bg-gray-light{
  --tw-bg-opacity: 1;
  background-color: rgb(225 225 225 / var(--tw-bg-opacity));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity));
}
.bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity));
}
.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}
.bg-indigo-500{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity));
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-top{
  -o-object-position: top;
     object-position: top;
}
.object-center{
  -o-object-position: center;
     object-position: center;
}
.p-4{
  padding: 1rem;
}
.p-0{
  padding: 0px;
}
.p-8{
  padding: 2rem;
}
.p-3{
  padding: 0.75rem;
}
.p-5{
  padding: 1.25rem;
}
.p-2{
  padding: 0.5rem;
}
.p-6{
  padding: 1.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-32{
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}
.pb-11{
  padding-bottom: 2.75rem;
}
.pt-8{
  padding-top: 2rem;
}
.pl-24{
  padding-left: 6rem;
}
.pb-0{
  padding-bottom: 0px;
}
.pt-16{
  padding-top: 4rem;
}
.pr-0{
  padding-right: 0px;
}
.pr-2{
  padding-right: 0.5rem;
}
.pt-4{
  padding-top: 1rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pr-16{
  padding-right: 4rem;
}
.pr-8{
  padding-right: 2rem;
}
.pl-12{
  padding-left: 3rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pl-3{
  padding-left: 0.75rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-top{
  vertical-align: top;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.font-normal{
  font-weight: 400;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-semibold{
  font-weight: 600;
}
.font-extrabold{
  font-weight: 800;
}
.font-medium{
  font-weight: 500;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.not-italic{
  font-style: normal;
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-tight{
  line-height: 1.25;
}
.leading-snug{
  line-height: 1.375;
}
.leading-9{
  line-height: 2.25rem;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-8{
  line-height: 2rem;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.text-gray-darker{
  --tw-text-opacity: 1;
  color: rgb(101 101 101 / var(--tw-text-opacity));
}
.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity));
}
.text-nav-heading{
  --tw-text-opacity: 1;
  color: rgb(159 170 183 / var(--tw-text-opacity));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(170 170 170 / var(--tw-text-opacity));
}
.text-indigo-800{
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
.text-indigo-600{
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity));
}
.text-gray-100{
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}
.underline{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.placeholder-gray-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(170 170 170 / var(--tw-placeholder-opacity));
}
.placeholder-gray-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(170 170 170 / var(--tw-placeholder-opacity));
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-25{
  opacity: 0.25;
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter{
  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);
}
.transition{
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-100{
  transition-duration: 100ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.last\:mb-0:last-child{
  margin-bottom: 0px;
}
.hover\:-translate-y-1:hover{
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), 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));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:bg-indigo-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.hover\:bg-gray-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.hover\:bg-indigo-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity));
}
.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.hover\:text-gray-600:hover{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.hover\:no-underline:hover{
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:border-indigo-700:focus{
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity));
}
.focus\:bg-gray-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.focus\:bg-gray-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.focus\:bg-indigo-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity));
}
.focus\:text-gray-700:focus{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.focus\:placeholder-gray-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity));
}
.focus\:placeholder-gray-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
@media (min-width: 640px){
  .inner.sm\:text-center .btn{
    align-self: center;
  }
  .sm\:order-1{
    order: 1;
  }
  .sm\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .sm\:float-right{
    float: right;
  }
  .sm\:float-left{
    float: left;
  }
  .sm\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .sm\:mb-11{
    margin-bottom: 2.75rem;
  }
  .sm\:mr-2{
    margin-right: 0.5rem;
  }
  .sm\:mb-0{
    margin-bottom: 0px;
  }
  .sm\:mt-4{
    margin-top: 1rem;
  }
  .sm\:mr-4{
    margin-right: 1rem;
  }
  .sm\:mt-2{
    margin-top: 0.5rem;
  }
  .sm\:ml-4{
    margin-left: 1rem;
  }
  .sm\:ml-6{
    margin-left: 1.5rem;
  }
  .sm\:mb-4{
    margin-bottom: 1rem;
  }
  .sm\:mr-6{
    margin-right: 1.5rem;
  }
  .sm\:mt-0{
    margin-top: 0px;
  }
  .sm\:mb-12{
    margin-bottom: 3rem;
  }
  .sm\:mb-2{
    margin-bottom: 0.5rem;
  }
  .sm\:mt-8{
    margin-top: 2rem;
  }
  .sm\:mt-3{
    margin-top: 0.75rem;
  }
  .sm\:ml-3{
    margin-left: 0.75rem;
  }
  .sm\:mb-5{
    margin-bottom: 1.25rem;
  }
  .sm\:-mt-8{
    margin-top: -2rem;
  }
  .sm\:mr-0{
    margin-right: 0px;
  }
  .sm\:block{
    display: block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:grid{
    display: grid;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:h-2\/3{
    height: 66.666667%;
  }
  .sm\:h-72{
    height: 18rem;
  }
  .sm\:h-12{
    height: 3rem;
  }
  .sm\:w-1\/3{
    width: 33.333333%;
  }
  .sm\:w-2\/3{
    width: 66.666667%;
  }
  .sm\:w-3\/4{
    width: 75%;
  }
  .sm\:w-1\/5{
    width: 20%;
  }
  .sm\:w-1\/2{
    width: 50%;
  }
  .sm\:w-2\/5{
    width: 40%;
  }
  .sm\:w-auto{
    width: auto;
  }
  .sm\:w-1\/6{
    width: 16.666667%;
  }
  .sm\:w-12{
    width: 3rem;
  }
  .sm\:max-w-none{
    max-width: none;
  }
  .sm\:max-w-xs{
    max-width: 20rem;
  }
  .sm\:flex-none{
    flex: none;
  }
  .sm\:flex-1{
    flex: 1 1 0%;
  }
  .sm\:flex-shrink-0{
    flex-shrink: 0;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-col-reverse{
    flex-direction: column-reverse;
  }
  .sm\:flex-wrap{
    flex-wrap: wrap;
  }
  .sm\:items-start{
    align-items: flex-start;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-center{
    justify-content: center;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:gap-8{
    gap: 2rem;
  }
  .sm\:gap-12{
    gap: 3rem;
  }
  .sm\:gap-6{
    gap: 1.5rem;
  }
  .sm\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .sm\:gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .sm\:gap-y-12{
    row-gap: 3rem;
  }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }
  .sm\:divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  }
  .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-divide-opacity));
  }
  .sm\:p-8{
    padding: 2rem;
  }
  .sm\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sm\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .sm\:pb-11{
    padding-bottom: 2.75rem;
  }
  .sm\:pb-0{
    padding-bottom: 0px;
  }
  .sm\:pt-0{
    padding-top: 0px;
  }
  .sm\:text-left{
    text-align: left;
  }
  .sm\:text-center{
    text-align: center;
  }
  .sm\:text-right{
    text-align: right;
  }
  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .sm\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .sm\:leading-10{
    line-height: 2.5rem;
  }
  .sm\:leading-5{
    line-height: 1.25rem;
  }
  .sm\:leading-9{
    line-height: 2.25rem;
  }
}
@media (min-width: 768px){
  .md\:absolute{
    position: absolute;
  }
  .md\:right-0{
    right: 0px;
  }
  .md\:left-0{
    left: 0px;
  }
  .md\:order-1{
    order: 1;
  }
  .md\:order-2{
    order: 2;
  }
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .md\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .md\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:mb-8{
    margin-bottom: 2rem;
  }
  .md\:mr-16{
    margin-right: 4rem;
  }
  .md\:mb-20{
    margin-bottom: 5rem;
  }
  .md\:mb-10{
    margin-bottom: 2.5rem;
  }
  .md\:ml-auto{
    margin-left: auto;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:-ml-32{
    margin-left: -8rem;
  }
  .md\:-mr-32{
    margin-right: -8rem;
  }
  .md\:mr-6{
    margin-right: 1.5rem;
  }
  .md\:mb-5{
    margin-bottom: 1.25rem;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:grid{
    display: grid;
  }
  .md\:h-96{
    height: 24rem;
  }
  .md\:h-full{
    height: 100%;
  }
  .md\:w-1\/3{
    width: 33.333333%;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-3\/5{
    width: 60%;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:w-1\/4{
    width: 25%;
  }
  .md\:w-1\/5{
    width: 20%;
  }
  .md\:w-2\/5{
    width: 40%;
  }
  .md\:w-1\/6{
    width: 16.666667%;
  }
  .md\:w-2\/3{
    width: 66.666667%;
  }
  .md\:max-w-4xl{
    max-width: 56rem;
  }
  .md\:flex-none{
    flex: none;
  }
  .md\:flex-1{
    flex: 1 1 0%;
  }
  .md\:flex-grow{
    flex-grow: 1;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:flex-wrap{
    flex-wrap: wrap;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:gap-0{
    gap: 0px;
  }
  .md\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .md\:gap-y-10{
    row-gap: 2.5rem;
  }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:p-8{
    padding: 2rem;
  }
  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .md\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .md\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .md\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:pt-0{
    padding-top: 0px;
  }
  .md\:pr-0{
    padding-right: 0px;
  }
  .md\:pl-4{
    padding-left: 1rem;
  }
  .md\:pr-24{
    padding-right: 6rem;
  }
  .md\:pl-10{
    padding-left: 2.5rem;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-right{
    text-align: right;
  }
  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px){
  .inner.lg\:text-center .btn{
    align-self: center;
  }
  .lg\:absolute{
    position: absolute;
  }
  .lg\:inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
  .lg\:inset-y-0{
    top: 0px;
    bottom: 0px;
  }
  .lg\:left-0{
    left: 0px;
  }
  .lg\:right-0{
    right: 0px;
  }
  .lg\:left-auto{
    left: auto;
  }
  .lg\:right-full{
    right: 100%;
  }
  .lg\:col-span-3{
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-1{
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .lg\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .lg\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }
  .lg\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .lg\:mt-2{
    margin-top: 0.5rem;
  }
  .lg\:mt-0{
    margin-top: 0px;
  }
  .lg\:mt-4{
    margin-top: 1rem;
  }
  .lg\:mt-24{
    margin-top: 6rem;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-10{
    height: 2.5rem;
  }
  .lg\:h-full{
    height: 100%;
  }
  .lg\:h-20{
    height: 5rem;
  }
  .lg\:h-72{
    height: 18rem;
  }
  .lg\:w-1\/4{
    width: 25%;
  }
  .lg\:w-3\/4{
    width: 75%;
  }
  .lg\:w-1\/5{
    width: 20%;
  }
  .lg\:w-auto{
    width: auto;
  }
  .lg\:w-2\/5{
    width: 40%;
  }
  .lg\:w-full{
    width: 100%;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:w-1\/3{
    width: 33.333333%;
  }
  .lg\:w-2\/3{
    width: 66.666667%;
  }
  .lg\:w-20{
    width: 5rem;
  }
  .lg\:max-w-2xl{
    max-width: 42rem;
  }
  .lg\:flex-1{
    flex: 1 1 0%;
  }
  .lg\:flex-none{
    flex: none;
  }
  .lg\:translate-x-2\/3{
    --tw-translate-x: 66.666667%;
    transform: translate(var(--tw-translate-x), 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));
  }
  .lg\:translate-y-1\/2{
    --tw-translate-y: 50%;
    transform: translate(var(--tw-translate-x), 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));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:flex-col{
    flex-direction: column;
  }
  .lg\:flex-nowrap{
    flex-wrap: nowrap;
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:justify-start{
    justify-content: flex-start;
  }
  .lg\:justify-end{
    justify-content: flex-end;
  }
  .lg\:justify-center{
    justify-content: center;
  }
  .lg\:gap-8{
    gap: 2rem;
  }
  .lg\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .lg\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .lg\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .lg\:pl-24{
    padding-left: 6rem;
  }
  .lg\:pt-24{
    padding-top: 6rem;
  }
  .lg\:pb-28{
    padding-bottom: 7rem;
  }
  .lg\:pl-0{
    padding-left: 0px;
  }
  .lg\:pr-6{
    padding-right: 1.5rem;
  }
  .lg\:text-left{
    text-align: left;
  }
  .lg\:text-center{
    text-align: center;
  }
  .lg\:text-right{
    text-align: right;
  }
  .lg\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1280px){
  .xl\:h-auto{
    height: auto;
  }
  .xl\:h-16{
    height: 4rem;
  }
  .xl\:max-w-xs{
    max-width: 20rem;
  }
  .xl\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .xl\:py-28{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .xl\:pr-12{
    padding-right: 3rem;
  }
  .xl\:pl-12{
    padding-left: 3rem;
  }
  .xl\:pl-16{
    padding-left: 4rem;
  }
  .xl\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
