@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&display=swap');

/*

This is a development CSS file that is compiled to a minified
production stylesheet in assets/built/screen.css using: npm run dev

*/

/* Lib - Local component imports
/* ---------------------------------------------------------- */

/* Base components */

/* Variables
/* ---------------------------------------------------------- */

:root {
  /* Colours */
  --color-primary: var(--ghost-accent-color, #3eb0ef);
  --color-base: #131313;
  --color-border: #ddd;
  --color-bg: #f5f5f5;
  --color-success: #80b912;
  --color-error: #f05230;
  /* Fonts */
  --font-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-serif: Georgia, Times, serif;
  --font-mono: Menlo, Courier, monospace;
  --font-light: 100;
  --font-normal: 400;
  --font-bold: 700;
  --font-heavy: 800;
  /* Breakpoints */
  --xlarge: 1680px;
  --large: 1280px;
  --medium: 980px;
  --small: 740px;
  --xsmall: 480px;
  /* Sizes */
  --height: 4rem;
  --margin: 2rem;
  --radius: 0.5rem;
}

/* @import "components/global.css"; */

/* Forms
/* ---------------------------------------------------------- */

.gh-input,
.gh-textarea {
  background: var(--color-bg);
  border-radius: var(--radius);
  border: none;
  border: solid 1px var(--color-border);
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 0.6em;
  text-decoration: none;
  width: 100%;
}

.gh-input:focus {
  border-color: var(--color-primary);
}

.gh-select {
  height: var(--height);
  padding-right: var(--height);
  text-overflow: ellipsis;
}

.gh-select option {
  color: var(--color-primary);
  background: var(--color-bg);
}

.gh-select:focus::-ms-value {
  background-color: transparent;
}

.gh-select::-ms-expand {
  display: none;
}

.gh-input,
.gh-select {
  height: var(--height);
}

.gh-textarea {
  padding: 0.3em 0.6em;
  resize: vertical;
}

.gh-check {
  display: block;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}

.gh-check + label,
.gh-check + label {
  display: flex;
  align-items: center;
  color: var(--color-base);
  cursor: pointer;
  font-size: 1em;
  font-weight: var(--font-normal);
  padding-left: calc((var(--height) * 0.6) + 0.75em);
  padding-right: 2rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.gh-check + label:before,
.gh-check + label:before {
  background: var(--color-bg);
  border-radius: var(--radius);
  border: solid 1px var(--color-border);
  content: '';
  display: inline-block;
  height: calc(var(--height) * 0.6);
  line-height: calc(var(--height) * 0.56);
  text-align: center;
  width: calc(var(--height) * 0.6);
  margin-right: 1rem;
}

.gh-check:checked + label:before,
.gh-check:checked + label:before {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
  content: '✓';
}

.gh-check:focus + label:before,
.gh-check:focus + label:before {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.gh-check + label:before {
  border-radius: var(--radius);
  border-radius: 100%;
}

/* @import "components/buttons.css"; */

/* Ghost components */

/* @import "ghost/header.css"; */

/* Content grid
/* ---------------------------------------------------------- */

.gh-canvas,
.kg-width-full.kg-content-wide {
  --gap: 4vw;
  --main: min(var(--content-width, 800px), 100% - var(--gap) * 2);
  --wide: minmax(0, calc((var(--container-width, 1200px) - var(--content-width, 800px)) / 2));
  --full: minmax(var(--gap), 1fr);
  display: grid;
  grid-template-columns:
        [full-start] var(--full)
        [wide-start] var(--wide)
        [main-start] var(--main) [main-end]
        var(--wide) [wide-end]
        var(--full) [full-end];
}

.gh-canvas > * {
  grid-column: main-start / main-end;
}

.kg-width-wide,
.kg-content-wide > div {
  grid-column: wide-start / wide-end;
}

.kg-width-full {
  grid-column: full-start / full-end;
}

.kg-width-full img {
  width: 100%;
}

/* Content & Typography
/* ---------------------------------------------------------- */

.gh-content > * + * {
  margin-top: 4vmin;
}

.gh-content > [id]:not(:first-child) {
  margin: 1.5em 0 0;
}

.gh-content > [id] + * {
  margin-top: 1rem;
}

.gh-content [id] + .kg-card,
.gh-content blockquote + .kg-card {
  margin-top: 6vmin;
}

.gh-canvas > blockquote,
.gh-canvas > ol,
.gh-canvas > ul,
.gh-canvas > dl,
.gh-canvas > p{
  font-family: IBM Plex Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.6em;
}

.gh-content > ul,
.gh-content > ol,
.gh-content > dl {
  padding-left: 1.9em;
}

.gh-content hr {
  margin-top: 6vmin;
}

.gh-content hr + * {
  margin-top: 6vmin !important;
}

.gh-content blockquote {
  position: relative;
  font-style: italic;
}

.gh-content blockquote::before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  background: var(--color-primary);
}

@media (max-width: 650px) {
  .gh-canvas blockquote,
    .gh-canvas ol,
    .gh-canvas ul,
    .gh-canvas dl,
    .gh-canvas p {
    font-size: 1.8rem;
  }

  .gh-content blockquote::before {
    left: -4vmin;
  }
}

/* Cards
/* ---------------------------------------------------------- */

.gh-content :not(.kg-card):not([id]) + .kg-card {
  margin-top: 6vmin;
}

.gh-content .kg-card + :not(.kg-card) {
  margin-top: 6vmin;
}

figcaption {
  padding: 1.5rem 1.5rem 0;
  text-align: center;
  color: rgba(0,0,0,0.5);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4em;
}

figcaption strong {
  color: rgba(0,0,0,0.8);
}

.gh-canvas :not(pre) code {
  vertical-align: middle;
  padding: 0.15em 0.4em 0.15em;
  border: #e1eaef 1px solid;
  font-weight: 400 !important;
  font-size: 0.9em;
  line-height: 1em;
  color: #dc0050;
  background: #f0f6f9;
  border-radius: 0.25em;
}

.gh-canvas > pre {
  overflow: scroll;
  padding: 16px 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 5px;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,.1), 0 0 1px rgba(0,0,0,.4);
}

.kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Default to 16 / 9 aspect ratio for YouTube & Vimeo embeds  */

.kg-embed-card > :where(iframe[src*="youtube.com"],iframe[src*="vimeo.com"]) {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.kg-image-card img {
  margin: auto;
}

/* Card captions
/* ---------------------------------------------------------- */

.kg-width-full.kg-card-hascaption {
  display: grid;
  grid-template-columns: inherit;
}

.kg-width-wide.kg-card-hascaption img {
  grid-column: wide-start / wide-end;
}

.kg-width-full.kg-card-hascaption img {
  grid-column: 1 / -1;
}

.kg-width-full.kg-card-hascaption figcaption {
  grid-column: main-start / main-end;
}

/* Tables
/* ---------------------------------------------------------- */

.gh-content table {
  border-collapse: collapse;
  width: 100%;
}

.gh-content th {
  padding: 0.5em 0.8em;
  text-align: left;
  font-size: .75em;
  text-transform: uppercase;
}

.gh-content td {
  padding: 0.4em 0.7em;
}

.gh-content tbody tr:nth-child(2n + 1) {
  background-color: rgba(0,0,0,0.1);
  padding: 1px;
}

.gh-content tbody tr:nth-child(2n + 2) td:last-child {
  box-shadow:
        inset 1px 0 rgba(0,0,0,0.1),
        inset -1px 0 rgba(0,0,0,0.1);
}

.gh-content tbody tr:nth-child(2n + 2) td {
  box-shadow: inset 1px 0 rgba(0,0,0,0.1);
}

.gh-content tbody tr:last-child {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.kg-header-card.kg-v2 .kg-header-card-button {
  height: 3.6rem !important;
}

/* @import "ghost/readmore.css"; */

/* Members Auth Template
/* ---------------------------------------------------------- */

.gh-auth-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 10vmin;
  text-align: center;
}

.gh-auth-title {
  margin: 0 0 0.1em;
  font-size: 4.2rem;
}

.gh-auth-form p {
  margin: 10px 0 4vmin 0;
  font-size: 1.7rem;
  color: rgba(0,0,0,0.6)
}

.gh-auth-form p small {
  display: inline-block;
  margin: 15px 0 0 0;
  font-size: 1.4rem;
}

.gh-auth-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 460px;
  margin: 0 auto;
}

.gh-auth-box .gh-button {
  margin-left: 10px;
}

@media (max-width: 600px) {
  .gh-auth-box {
    flex-direction: column;
    max-width: 400px;
  }

  .gh-auth-box .gh-button {
    width: 100%;
    margin: 15px 0 0 0;
  }
}

/* Members Forms
/* ---------------------------------------------------------- */

form[data-members-form] .gh-button-loader,
form[data-members-form] .message-success,
form[data-members-form] .message-error {
  display: none;
}

.gh-button-content {
  min-width: 100px;
}

.message-success svg,
.message-error svg {
  position: relative;
  top: -1px;
  margin-right: 5px;
  height: 15px;
  width: 15px;
}

.message-success svg {
  fill: #fff;
}

.message-error svg {
  fill: var(--color-error);
}

form[data-members-form].success .message-success,
form[data-members-form].error .message-error {
  position: fixed;
  top: 20px;
  left: 4vmin;
  right: 4vmin;
  z-index: 9999;
  max-width: calc(1400px - 8vmin);
  margin: 0 auto;
  padding: 10px 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5em;
  font-weight: 500;
  text-align: center;
  background: var(--color-base);
  border-radius: var(--radius);
}

form[data-members-form].success .message-success {
  background: var(--color-success);
}

form[data-members-form].error .message-error {
  color: var(--color-error);
  background: #fff;
  box-shadow: var(--color-error) 0 0 0 1px;
}

form[data-members-form] .gh-button {
  position: relative;
  min-width: 120px;
}

/*-- Loading --*/

/* Hide button text */

form[data-members-form].loading .gh-button-content {
  visibility: hidden;
}

/* Show loading spinner */

form[data-members-form].loading .gh-button-loader {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -30%;
  margin: 0 0 0 -19px;
  transform: scale(0.6);
}

.gh-button-loader svg path,
.gh-button-loader svg rect{
  fill: #fff;
}

/*-- Show success message on success --*/

form[data-members-form].success .message-success {
  display: block;
}

/*-- Show error message on error --*/

form[data-members-form].error .message-error {
  display: block;
}

/* Error Templates
/* ---------------------------------------------------------- */

.gh-error {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2vmin;
}

.gh-error-content {
  flex: 1 0 auto;
  text-align: center;
}

.gh-error-code {
  margin: 0;
  font-size: 14vmin;
}

.gh-error-description {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  font-size: 4vmin;
  line-height: 1.2em;
  font-weight: 300;
  opacity: 0.6;
}

.gh-error-link {
  display: block;
  margin-top: 4vmin;
  font-size: 1.6rem;
}

.gh-error-stack {
  max-width: 600px;
  margin: 0 auto 0;
  padding: 8vmin 0;
  text-align: left;
}

.gh-error-stack-list {
  margin: 4vmin 0 0;
  font-size: 1.4rem;
}

.gh-error-stack-list > li {
  padding: 2rem 0;
  margin: 0;
  border-top: rgba(0,0,0,0.1) 1px solid;
}

.gh-error-stack-function {
  margin: 0 0 0.5em;
  font-size: 1.8rem;
  color: red;
}

/* @import "ghost/footer.css"; */

a.gh-powered,
a.gh-powered:hover {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px 6px 6px;
  border: none;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: -0.3px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #383838;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.08);
  cursor: pointer;
}

a.gh-powered svg {
  height: 16px;
  width: 16px;
  margin: 0 6px 0 0;
}

.gh-pagination .pagination {
  display: flex;
  justify-content: space-between;
  margin-block: 4vmin;
}

.gh-post-comments {
  margin-block: 8vmin 4vmin;
}

/*

! tailwindcss v3.4.1 | 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.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  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: IBM Plex Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
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. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: IBM Plex Mono, monospace, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
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-feature-settings: inherit;
  /* 1 */
  font-variation-settings: 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;
}

/*
Reset default styling for dialogs.
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*  {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html{
  scroll-behavior: smooth;
}

html,body{
  min-height: 100vh;
  font-size: 93%;
}

@media (min-width: 640px){
  html,body{
    font-size: 94%;
  }
}

@media (min-width: 768px){
  html,body{
    font-size: 95%;
  }
}

@media (min-width: 1024px){
  html,body{
    font-size: 96%;
  }
}

@media (min-width: 1280px){
  html,body{
    font-size: 98%;
  }
}

@media (min-width: 1536px){
  html,body{
    font-size: 100%;
  }
}

@media (min-width: 1700px){
  html,body{
    font-size: 100%;
  }
}

input:focus, button:focus, textarea:focus{
  outline-style: solid;
  outline-width: 2px;
  outline-color: #FDBF59;
  outline-offset: 0px;
  /* Adjust the offset as needed */
}

::-moz-placeholder{
  font-style: italic;
}

::placeholder{
  font-style: italic;
}

h1,p{
  will-change: transform;
}

button:disabled,
    button[disabled]{
  --tw-bg-opacity: 0.7;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  color: var(--color-primary);
  text-decoration-skip-ink: auto;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

a:not([class]):hover {
  text-decoration: underline;
}

.text_navbar_main{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 640px){
  .text_navbar_main{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .text_navbar_main{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1120px){
  .text_navbar_main{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .text_navbar_main{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1700px){
  .text_navbar_main{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.text_navbar_info{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text_navbar_secondary{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 1280px){
  .text_navbar_secondary{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1700px){
  .text_navbar_secondary{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.text_108{
  font-size: 4.5rem;
  line-height: 1;
}

@media (min-width: 400px){
  .text_108{
    font-size: 5.25rem;
    line-height: 1;
  }
}

@media (min-width: 1024px){
  .text_108{
    font-size: 5.25rem;
    line-height: 1;
  }
}

@media (min-width: 1280px){
  .text_108{
    font-size: 6rem;
    line-height: 1;
  }
}

@media (min-width: 1700px){
  .text_108{
    font-size: 6.75rem;
    line-height: 1;
  }
}

.text_104{
  font-size: 3.75rem;
  line-height: 1;
}

@media (min-width: 1024px){
  .text_104{
    font-size: 5.25rem;
    line-height: 1;
  }
}

@media (min-width: 1280px){
  .text_104{
    font-size: 6rem;
    line-height: 1;
  }
}

@media (min-width: 1700px){
  .text_104{
    font-size: 6.5rem;
    line-height: 1;
  }
}

.text_40{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 1024px){
  .text_40{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

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

@media (min-width: 1536px){
  .text_40{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1700px){
  .text_40{
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

.text_36{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 1024px){
  .text_36{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

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

@media (min-width: 1536px){
  .text_36{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1700px){
  .text_36{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.text_30{
  font-size: 1.24rem;
}

@media (min-width: 400px){
  .text_30{
    font-size: 1.43rem;
  }
}

@media (min-width: 768px){
  .text_30{
    font-size: 1.43rem;
  }
}

@media (min-width: 1024px){
  .text_30{
    font-size: 1.45rem;
  }
}

@media (min-width: 1280px){
  .text_30{
    font-size: 1.66rem;
  }
}

@media (min-width: 1700px){
  .text_30{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

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

@media (min-width: 768px){
  .text_27{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px){
  .text_27{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

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

@media (min-width: 1536px){
  .text_27{
    font-size: 1.6875rem;
    line-height: 2.1rem;
  }
}

.text_24{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 768px){
  .text_24{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .text_24{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .text_24{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .text_24{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.text_20{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 768px){
  .text_20{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .text_20{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .text_20{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .text_20{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.text_18{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 1024px){
  .text_18{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .text_18{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .text_18{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.text_16{
  font-size: 1.0625rem;
  line-height: 1.5rem;
}

@media (min-width: 768px){
  .text_16{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px){
  .text_16{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1280px){
  .text_16{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1536px){
  .text_16{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

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

@media (min-width: 768px){
  .text_16_tag{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px){
  .text_16_tag{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1280px){
  .text_16_tag{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1536px){
  .text_16_tag{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.text_14{
  font-size: 0.97rem;
  line-height: 1.25rem;
}

@media (min-width: 1024px){
  .text_14{
    font-size: 0.97rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1280px){
  .text_14{
    font-size: 0.95rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1536px){
  .text_14{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

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

@media (min-width: 1280px){
  .text_14_footer{
    font-size: 0.95rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1536px){
  .text_14_footer{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

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

@media (min-width: 1024px){
  .text_14_tag{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.container_{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 3vmin;
  padding-right: 3vmin;
}

@media (min-width: 1536px){
  .container_{
    max-width: 1536px;
    padding-left: 4vmin;
    padding-right: 4vmin;
  }
}

@media (min-width: 1700px){
  .container_{
    max-width: 1700px;
  }
}

.clamp_3{
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
}

.clamp_5{
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
}

.request_demo_container{
  position: relative;
}

.request_demo_container:before{
  content:'';
  position: absolute;
  right: 100%;
  top: 0px;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(90 66 236 / var(--tw-bg-opacity));
}

.request_demo_container:after{
  content:'';
  position: absolute;
  bottom: 100%;
  right: 0px;
  height: 50%;
  width: calc(200%);
  --tw-bg-opacity: 1;
  background-color: rgb(90 66 236 / var(--tw-bg-opacity));
}

#contact small{
  margin-left: 0.875rem;
  margin-top: 0.25rem;
  font-size: 12px;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}

*, ::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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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(59 130 246 / 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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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(59 130 246 / 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:  ;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 400px){
  .container{
    max-width: 400px;
  }
}

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

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}

@media (min-width: 1700px){
  .container{
    max-width: 1700px;
  }
}

.jobb_light_button{
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(215 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(250 248 255 / var(--tw-bg-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-family: IBM Plex Mono, monospace, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media (hover: hover) and (pointer: fine){
  .jobb_light_button:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(250 248 255 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(253 191 89 / var(--tw-text-opacity));
    --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);
  }
}

.jobb_violet_button{
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(215 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(90 66 236 / var(--tw-bg-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-family: IBM Plex Mono, monospace, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --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);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media (hover: hover) and (pointer: fine){
  .jobb_violet_button:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(253 191 89 / var(--tw-bg-opacity));
    --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);
  }
}

.jobb_form{
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(215 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.jobb_form_contact{
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(215 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.82rem;
  padding-bottom: 0.82rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.jobb_textarea{
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(215 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.cta_gradient{
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#faf8ff+0,f4f3f7+50,faf8ff+100 */
  background: linear-gradient(to right,  #faf8ff 0%,#f4f3f7 50%,#faf8ff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.hamburger {
  /*padding: 15px 15px;*/
  display: flex;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
        .hamburger.is-active .hamburger-inner::before,
        .hamburger.is-active .hamburger-inner::after {
  background-color: #4B4A4C;
}

.hamburger-box {
  width: 28px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: #4B4A4C;
  /*border-radius: 3px;*/
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/*
   * Squeeze
   */

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dynamic_page_content > p{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 768px){
  .dynamic_page_content > p{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .dynamic_page_content > p{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .dynamic_page_content > p{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .dynamic_page_content > p{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.dynamic_page_content > * + * {
  margin-top: 4vmin;
}

.dynamic_page_content figcaption{
  font-size: 14px !important;
}

.dynamic_page_content figcaption span{
  font-size: 14px !important;
}

.dynamic_page_content figure.kg-card.kg-image-card{
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

@media (min-width: 1120px){
  .dynamic_page_content figure.kg-card.kg-image-card{
    margin-bottom: 0px;
  }
}

@media (min-width: 1280px){
  .dynamic_page_content figure.kg-card.kg-image-card{
    flex-direction: row;
  }
}

.dynamic_page_content figure.kg-card.kg-image-card > img{
  width: 100%;
  min-width: 50%;
}

@media (min-width: 1280px){
  .dynamic_page_content figure.kg-card.kg-image-card > img{
    width: 50%;
  }
}

.dynamic_page_content figure.kg-card.kg-image-card > figcaption{
  display: block;
  text-align: left;
}

.dynamic_page_content figure.kg-card.kg-image-card figcaption > span{
  margin-top: 0.5rem;
  display: block;
}

.dynamic_page_content figure.kg-card.kg-image-card figcaption p > span{
  margin-top: 0.5rem;
  display: block;
}

.dynamic_page_content figure.kg-card.kg-image-card figcaption p > b{
  font-size: 1rem;
  line-height: 1.5rem;
}

.dynamic_page_content figure.kg-card.kg-image-card figcaption > b{
  font-size: 1rem;
  line-height: 1.5rem;
}

.dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content div.kg-bookmark-description{
  display: none;
}

.dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-thumbnail{
  display: none;
}

.dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-metadata{
  display: none;
}

.dynamic_page_content figure.kg-card.kg-bookmark-card{
  --tw-shadow: 0 20px 45px 2px rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 20px 45px -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);
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.dynamic_page_content figure.kg-card.kg-bookmark-card:hover{
  --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);
}

.dynamic_page_content figure.kg-card.kg-bookmark-card a.kg-bookmark-container{
  border-width: 1px !important;
  border-color: rgb(0 0 0 / var(--tw-border-opacity)) !important;
  --tw-border-opacity: 0.05 !important;
}

.dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 768px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content{
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content div.kg-bookmark-title{
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 768px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content div.kg-bookmark-title{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content div.kg-bookmark-title{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content div.kg-bookmark-title{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .dynamic_page_content figure.kg-card.kg-bookmark-card div.kg-bookmark-content div.kg-bookmark-title{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.dynamic_page_content figure.kg-card.kg-embed-card{
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

@media (min-width: 1280px){
  .dynamic_page_content figure.kg-card.kg-embed-card{
    flex-direction: row;
  }
}

.dynamic_page_content figure.kg-card.kg-embed-card iframe{
  width: 100%;
  min-width: 50%;
}

@media (min-width: 1280px){
  .dynamic_page_content figure.kg-card.kg-embed-card iframe{
    width: 50%;
  }
}

.dynamic_page_content figure.kg-card.kg-embed-card > figcaption{
  display: block;
  text-align: left;
}

.dynamic_page_content figure.kg-card.kg-embed-card figcaption p > span{
  margin-top: 0.5rem;
  display: block;
}

.dynamic_page_content figure.kg-card.kg-embed-card figcaption > span{
  margin-top: 0.5rem;
  display: block;
}

.dynamic_page_content figure.kg-card.kg-embed-card figcaption p > b{
  font-size: 1rem;
  line-height: 1.5rem;
}

.dynamic_page_content figure.kg-card.kg-embed-card figcaption > b{
  font-size: 1rem;
  line-height: 1.5rem;
}

.dynamic_page_content > .kg-card.kg-bookmark-card + .kg-card.kg-bookmark-card {
  margin-top: 1rem;
}

.resource_card{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.resource_card:hover{
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.25;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

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

.collapse{
  visibility: collapse;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.-right-40{
  right: -10rem;
}

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

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

.bottom-0{
  bottom: 0px;
}

.left-0{
  left: 0px;
}

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

.right-0{
  right: 0px;
}

.top-0{
  top: 0px;
}

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

.top-\[calc\(100\%-18px\)\]{
  top: calc(100% - 18px);
}

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

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

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

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

.z-\[0\]{
  z-index: 0;
}

.z-\[11\]{
  z-index: 11;
}

.z-\[41\]{
  z-index: 41;
}

.z-\[60\]{
  z-index: 60;
}

.z-\[9999\]{
  z-index: 9999;
}

.order-1{
  order: 1;
}

.order-2{
  order: 2;
}

.order-3{
  order: 3;
}

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

.my-7{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

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

.-ml-1\.5{
  margin-left: -0.375rem;
}

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

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

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

.mb-10{
  margin-bottom: 2.5rem;
}

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

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

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

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

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

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

.ml-3{
  margin-left: 0.75rem;
}

.ml-3\.5{
  margin-left: 0.875rem;
}

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

.ml-5{
  margin-left: 1.25rem;
}

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

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

.mt-1\.5{
  margin-top: 0.375rem;
}

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

.mt-11{
  margin-top: 2.75rem;
}

.mt-14{
  margin-top: 3.5rem;
}

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

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

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

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

.mt-6{
  margin-top: 1.5rem;
}

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

.mt-9{
  margin-top: 2.25rem;
}

.mt-\[1\.7rem\]{
  margin-top: 1.7rem;
}

.mt-\[17vmax\]{
  margin-top: 17vmax;
}

.mt-\[3\.75rem\]{
  margin-top: 3.75rem;
}

.mt-\[4\.2rem\]{
  margin-top: 4.2rem;
}

.mt-\[4\.4rem\]{
  margin-top: 4.4rem;
}

.mt-\[9rem\]{
  margin-top: 9rem;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.flex{
  display: flex;
}

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

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.aspect-\[1013\/775\]{
  aspect-ratio: 1013/775;
}

.h-10{
  height: 2.5rem;
}

.h-11{
  height: 2.75rem;
}

.h-14{
  height: 3.5rem;
}

.h-16{
  height: 4rem;
}

.h-20{
  height: 5rem;
}

.h-5{
  height: 1.25rem;
}

.h-6{
  height: 1.5rem;
}

.h-60{
  height: 15rem;
}

.h-7{
  height: 1.75rem;
}

.h-8{
  height: 2rem;
}

.h-9{
  height: 2.25rem;
}

.h-\[100vh\]{
  height: 100vh;
}

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

.h-\[50vh\]{
  height: 50vh;
}

.h-full{
  height: 100%;
}

.h-screen{
  height: 100vh;
}

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

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

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

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

.w-10{
  width: 2.5rem;
}

.w-11{
  width: 2.75rem;
}

.w-5{
  width: 1.25rem;
}

.w-6{
  width: 1.5rem;
}

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

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

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

.w-\[31\.25rem\]{
  width: 31.25rem;
}

.w-auto{
  width: auto;
}

.w-full{
  width: 100%;
}

.min-w-\[15\.9rem\]{
  min-width: 15.9rem;
}

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

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

.max-w-4xl{
  max-width: 56rem;
}

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

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

.max-w-none{
  max-width: none;
}

.max-w-screen-xl{
  max-width: 1280px;
}

.max-w-xl{
  max-width: 36rem;
}

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

.flex-shrink-0{
  flex-shrink: 0;
}

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

.-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\/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));
}

.-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-x-0{
  --tw-translate-x: 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-5{
  --tw-translate-x: 1.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-y-10{
  --tw-translate-y: 2.5rem;
  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-24{
  --tw-translate-y: 6rem;
  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));
}

.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  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));
}

.scale-95{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  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));
}

.cursor-default{
  cursor: default;
}

.cursor-pointer{
  cursor: pointer;
}

.grid-flow-col{
  grid-auto-flow: column;
}

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

.grid-rows-3{
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

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

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

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

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

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

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

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

.gap-3{
  gap: 0.75rem;
}

.gap-4{
  gap: 1rem;
}

.gap-8{
  gap: 2rem;
}

.gap-x-10{
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.gap-x-12{
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-x-3\.5{
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
}

.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-y-10{
  row-gap: 2.5rem;
}

.gap-y-11{
  row-gap: 2.75rem;
}

.gap-y-16{
  row-gap: 4rem;
}

.gap-y-24{
  row-gap: 6rem;
}

.gap-y-3{
  row-gap: 0.75rem;
}

.gap-y-5{
  row-gap: 1.25rem;
}

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

.self-start{
  align-self: flex-start;
}

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

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

.overflow-y-clip{
  overflow-y: clip;
}

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

.rounded{
  border-radius: 0.25rem;
}

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

.rounded-lg{
  border-radius: 0.5rem;
}

.border{
  border-width: 1px;
}

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

.border-l{
  border-left-width: 1px;
}

.border-l-8{
  border-left-width: 8px;
}

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

.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}

.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
}

.border-jobb-gray{
  --tw-border-opacity: 1;
  border-color: rgb(215 213 219 / var(--tw-border-opacity));
}

.border-jobb-gray-darker{
  --tw-border-opacity: 1;
  border-color: rgb(150 148 153 / var(--tw-border-opacity));
}

.border-jobb-yellow{
  --tw-border-opacity: 1;
  border-color: rgb(253 191 89 / var(--tw-border-opacity));
}

.border-purple-600{
  --tw-border-opacity: 1;
  border-color: rgb(147 51 234 / var(--tw-border-opacity));
}

.border-teal-600{
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity));
}

.border-opacity-5{
  --tw-border-opacity: 0.05;
}

.border-opacity-70{
  --tw-border-opacity: 0.7;
}

.bg-blue-800{
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity));
}

.bg-jobb-bg_primary{
  --tw-bg-opacity: 1;
  background-color: rgb(250 248 255 / var(--tw-bg-opacity));
}

.bg-jobb-violet{
  --tw-bg-opacity: 1;
  background-color: rgb(90 66 236 / var(--tw-bg-opacity));
}

.bg-jobb-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(253 191 89 / var(--tw-bg-opacity));
}

.bg-transparent{
  background-color: transparent;
}

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

.fill-jobb-black{
  fill: #4B4A4C;
}

.fill-jobb-gray{
  fill: #D7D5DB;
}

.fill-white{
  fill: #fff;
}

.stroke-black{
  stroke: #000;
}

.p-1{
  padding: 0.25rem;
}

.p-1\.5{
  padding: 0.375rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-px{
  padding: 1px;
}

.\!px-7{
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

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

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

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

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

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

.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

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

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

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

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

.py-\[3\.25rem\]{
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

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

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

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

.pl-9{
  padding-left: 2.25rem;
}

.pr-10{
  padding-right: 2.5rem;
}

.pr-6{
  padding-right: 1.5rem;
}

.pt-0{
  padding-top: 0px;
}

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

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

.pt-14{
  padding-top: 3.5rem;
}

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

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

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

.pt-\[4\.5rem\]{
  padding-top: 4.5rem;
}

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

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

.font-mono{
  font-family: IBM Plex Mono, monospace, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";
}

.text-2\.5xl{
  font-size: 1.75rem;
  line-height: 2.2rem;
}

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

.text-4\.5xl{
  font-size: 2.5rem;
  line-height: 1.3;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}

.text-\[1\.125rem\]{
  font-size: 1.125rem;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

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

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

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

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

.font-light{
  font-weight: 300;
}

.font-medium{
  font-weight: 500;
}

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

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.capitalize{
  text-transform: capitalize;
}

.\!leading-\[1\.75\]{
  line-height: 1.75 !important;
}

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

.leading-snug{
  line-height: 1.375;
}

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

.tracking-tight{
  letter-spacing: -0.025em;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

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

.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.text-jobb-black{
  --tw-text-opacity: 1;
  color: rgb(75 74 76 / var(--tw-text-opacity));
}

.text-jobb-gray-darker{
  --tw-text-opacity: 1;
  color: rgb(150 148 153 / var(--tw-text-opacity));
}

.text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity));
}

.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}

.text-teal-600{
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity));
}

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

.no-underline{
  text-decoration-line: none;
}

.opacity-0{
  opacity: 0;
}

.opacity-100{
  opacity: 1;
}

.opacity-40{
  opacity: 0.4;
}

.opacity-50{
  opacity: 0.5;
}

.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-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, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -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-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-150{
  transition-delay: 150ms;
}

.delay-300{
  transition-delay: 300ms;
}

.delay-75{
  transition-delay: 75ms;
}

.delay-\[100ms\]{
  transition-delay: 100ms;
}

.delay-\[150ms\]{
  transition-delay: 150ms;
}

.delay-\[200ms\]{
  transition-delay: 200ms;
}

.delay-\[250ms\]{
  transition-delay: 250ms;
}

.delay-\[300ms\]{
  transition-delay: 300ms;
}

.delay-\[350ms\]{
  transition-delay: 350ms;
}

.delay-\[400ms\]{
  transition-delay: 400ms;
}

.delay-\[50ms\]{
  transition-delay: 50ms;
}

.duration-100{
  transition-duration: 100ms;
}

.duration-1000{
  transition-duration: 1000ms;
}

.duration-200{
  transition-duration: 200ms;
}

.duration-\[250ms\]{
  transition-duration: 250ms;
}

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

/* Main - Your styles here! Edit below
/* ---------------------------------------------------------- */

html,
.gh-viewport {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffffff;
}

.nav-current{
  --tw-text-opacity: 1 !important;
  color: rgb(253 191 89 / var(--tw-text-opacity)) !important;
}

#main_nav li{
  position: relative;
}

@media(min-width:641px){
  #main_nav li .nav-current::before{
    content: url('../img/triangle_up.svg');
    position: absolute;
    bottom: 0px;
    left: 50%;
    height: 0.75rem;
    width: 0.75rem;
    --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));
  }
}

.gh-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.gh-page {
  padding: 0 4vmin;
}

.gh-article {
  padding: 8vmin 0;
}

.gh-postfeed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 4.8vmin 4vmin;
  padding: 8vmin 0;
}

.gh-postfeed > *:first-child {
  grid-column: 1 / -1;
}

.gh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gh-head-actions a:not(.gh-button) {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 10px;
}

.gh-head-actions a svg {
  height: 1.8rem;
  fill: currentcolor;
}

.gh-head-actions a:first-child svg {
  margin-left: 20px;
}

.gh-head-actions a:last-child svg {
  height: 2rem;
}

/* Index
/* ---------------------------------------------------------- */

/* .gh-card:not(:first-child) {
    margin: 8vmin auto 0;
} */

.gh-card-link {
  display: flex;
  flex-direction: column;
}

.gh-card-image {
  width: 100%;
  /* max-height: 700px; */
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 4vmin;
  aspect-ratio: 1 / 1;
}

.gh-card-image:first-of-type {
  aspect-ratio: 16 / 9;
}

.gh-card-meta {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.4rem;
  line-height: 1.2em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.gh-card-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
}

.gh-card-content p {
  margin: 1.2rem 0;
  padding: 0 3vmin;
}

.gh-card-content > strong {
  display: inline-block;
  padding: 1px 0;
  font-weight: 500;
  box-shadow: 0 -1px 0 0 inset currentColor;
  opacity: 0.75;
}

/* Page
/* ---------------------------------------------------------- */

.gh-page-head {
  margin: 0 auto;
  padding: 8vmin 0 4vmin;
  text-align: center;
}

.gh-page-image {
  margin: 4vmin 0 0 0;
}

.gh-page-head > p {
  max-width: 800px;
  margin: 0.3em auto 0;
  padding: 0 6vmin;
  font-size: 1.3em;
  line-height: 1.4em;
  opacity: 0.5;
}

@media (max-width: 700px) {
  .gh-page-head > p {
    font-size: 1.6rem;
  }
}

/* Post
/* ---------------------------------------------------------- */

.gh-content > [id]:not(:first-child) {
  margin: 1.7em 0 0.7em !important;
}

.gh-content > [id]:first-child:not(svg) {
  margin: 0em 0 0.7em !important;
}

.jobb_header_post_centered {
  display: grid;
  grid-template-columns: [full-start] minmax(4vw,auto) [wide-start] minmax(auto,240px) [main-start] min(800px,calc(100% - 8vw)) [main-end] minmax(auto,240px) [wide-end] minmax(4vw,auto) [full-end];
}

.jobb_header_post_centered > * {
  grid-column: main-start/main-end;
}

.jobb_post_footer {
  display: grid;
  grid-template-columns: [full-start] minmax(4vw,auto) [wide-start] minmax(auto,240px) [main-start] min(800px,calc(100% - 8vw)) [main-end] minmax(auto,240px) [wide-end] minmax(4vw,auto) [full-end];
}

.jobb_post_footer > * {
  grid-column: main-start/main-end;
}

.gh-header {
  padding: 0 0 8vmin 0;
  text-align: center;
}

.gh-post-meta {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.gh-excerpt {
  margin: 1rem 0 0 0;
}

.gh-feature-image {
  grid-column: wide-start / wide-end;
  width: 100%;
  margin-top: 6vmin;
}

@media (min-width: 768px){
  .gh-feature-image{
    margin-top: 4.5vmin;
  }
}

.gh-feature-image img {
  margin-inline: auto;
  width: 100%;
  border-radius: .5rem !important;
}

.gh-post-footer {
  margin: 2rem 0;
}

.gh-content.gh-canvas > h2, .gh-content.gh-canvas > h3{
  font-size: 1.75rem;
  line-height: 2.2rem;
}

@media (min-width: 768px){
  .gh-content.gh-canvas > h2, .gh-content.gh-canvas > h3{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 1280px){
  .gh-content.gh-canvas > h2, .gh-content.gh-canvas > h3{
    font-size: 2rem !important;
    line-height: 2.25rem !important;
  }
}

.gh-content.gh-canvas > h2, .gh-content.gh-canvas > h3 {
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.gh-content.gh-canvas h4:not(.kg-toggle-heading-text) {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.gh-content.gh-canvas h5 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

.gh-content.gh-canvas h6 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.gh-canvas > blockquote,
.gh-canvas > ol,
.gh-canvas > ul,
.gh-canvas > dl,
.gh-canvas > p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

@media (min-width: 1024px){
  .gh-canvas > blockquote,
.gh-canvas > ol,
.gh-canvas > ul,
.gh-canvas > dl,
.gh-canvas > p{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .gh-canvas > blockquote,
.gh-canvas > ol,
.gh-canvas > ul,
.gh-canvas > dl,
.gh-canvas > p{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
}

.gh-canvas > blockquote,
.gh-canvas > ol,
.gh-canvas > ul,
.gh-canvas > dl,
.gh-canvas > p {
  line-height: 1.75 !important;
}

figcaption {
  font-weight: 400;
  line-height: 1.4em;
  padding: 1rem 1em 0 !important;
  font-size: 12px !important;
}

@media (min-width: 1024px){
  figcaption{
    font-size: 14px !important;
  }
}

figcaption p {
  font-weight: 400;
  line-height: 1.4em;
  font-size: 12px !important;
}

@media (min-width: 1024px){
  figcaption p{
    font-size: 14px !important;
  }
}

figcaption span {
  font-weight: 400;
  line-height: 1.4em;
  font-size: 12px !important;
}

@media (min-width: 1024px){
  figcaption span{
    font-size: 14px !important;
  }
}

.gh-canvas > ul > li{
  position: relative;
}

.gh-canvas > ol > li {
  list-style-type: decimal;
}

.gh-canvas > ul > li::before {
  content:'';
  position: absolute;
  top: 1rem;
  left: -1.5rem;
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity));
}

ol:not([class]) li + li, ul:not([class]) li + li {
  margin-top: 1em !important;
}

.gh-content blockquote {
  font-style: italic;
  padding-left: 1.5rem;
  position: relative;
}

.gh-content blockquote::before {
  background: var(--color-primary);
  bottom: 0;
  content: "";
  left: 0 !important;
  position: absolute;
  top: 0;
  width: .3rem;
}

/* Author Archive
/* ---------------------------------------------------------- */

.gh-author-image {
  height: 12vmin;
  width: 12vmin;
  margin: 0 auto 1.5em;
  border-radius: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.gh-author-meta {
  margin: 2vmin 0 0 0;
  font-size: 1.2em;
}

.gh-author-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-author-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0.75vmin;
}

.gh-author-links a + a:before {
  display: block;
  content: "";
  margin: 0 1.25vmin 0 0;
  height: 1em;
  width: 1px;
  background: rgba(0,0,0,0.3);
  transform: rotate(20deg);
}

@media (max-width: 700px) {
  .gh-author-meta {
    font-size: 1.6rem;
  }
}

/* Ghost Cards
/* ---------------------------------------------------------- */

/* .kg-gallery-image:not(:first-of-type) {
    @apply !mt-2 md:!mt-4;
}
.kg-gallery-row:not(:first-of-type) {
   @apply !mt-2 md:!mt-4;
} */

.kg-image-card img {
  border-radius: .5rem !important;
}

.kg-gallery-image img {
  border-radius: .5rem !important;
}

.kg-bookmark-card .kg-bookmark-title{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 1024px){
  .kg-bookmark-card .kg-bookmark-title{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .kg-bookmark-card .kg-bookmark-title{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .kg-bookmark-card .kg-bookmark-title{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.kg-bookmark-card .kg-bookmark-description{
  font-size: 1.0625rem;
  line-height: 1.5rem;
}

@media (min-width: 768px){
  .kg-bookmark-card .kg-bookmark-description{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px){
  .kg-bookmark-card .kg-bookmark-description{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1280px){
  .kg-bookmark-card .kg-bookmark-description{
    font-size: 1.0625rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1536px){
  .kg-bookmark-card .kg-bookmark-description{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.kg-bookmark-card .kg-bookmark-metadata{
  font-size: 0.97rem;
  line-height: 1.25rem;
}

@media (min-width: 1024px){
  .kg-bookmark-card .kg-bookmark-metadata{
    font-size: 0.97rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1280px){
  .kg-bookmark-card .kg-bookmark-metadata{
    font-size: 0.95rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1536px){
  .kg-bookmark-card .kg-bookmark-metadata{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.kg-bookmark-card .kg-bookmark-thumbnail{
  display: none;
}

@media (min-width: 768px){
  .kg-bookmark-card .kg-bookmark-thumbnail{
    display: block;
  }
}

.kg-button-card a.kg-btn {
  height: 2.8em !important;
}

.kg-card.kg-toggle-card .kg-toggle-heading-text{
  font-size: 1.1875rem;
  line-height: 1.75rem;
}

@media (min-width: 1024px){
  .kg-card.kg-toggle-card .kg-toggle-heading-text{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .kg-card.kg-toggle-card .kg-toggle-heading-text{
    font-size: 1.1875rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px){
  .kg-card.kg-toggle-card .kg-toggle-heading-text{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.kg-card.kg-toggle-card .kg-toggle-heading-text{
  font-weight: 600;
}

.kg-toggle-card .kg-toggle-content p{
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

.wide-page .gh-canvas, .wide-page .kg-width-full.kg-content-wide {
  --main: min(var(--content-width, 1000px), 100% - var(--gap) * 2);
}

@media (min-width: 640px){
  .sm\:jobb_light_button{
    border-radius: 0.375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(215 213 219 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(250 248 255 / var(--tw-bg-opacity));
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    font-family: IBM Plex Mono, monospace, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";
    text-transform: uppercase;
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-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);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  @media (hover: hover) and (pointer: fine){
    .sm\:jobb_light_button:hover{
      --tw-bg-opacity: 1;
      background-color: rgb(250 248 255 / var(--tw-bg-opacity));
      --tw-text-opacity: 1;
      color: rgb(253 191 89 / var(--tw-text-opacity));
      --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);
    }
  }
}

@media (hover: hover) and (pointer: fine){
  .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-gray-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  }

  .hover\:bg-jobb-yellow:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(253 191 89 / var(--tw-bg-opacity));
  }

  .hover\:fill-jobb-yellow:hover{
    fill: #FDBF59;
  }

  .hover\:text-\[var\(--color-primary\)\]:hover{
    color: var(--color-primary);
  }

  .group:hover .group-hover\:scale-\[1\.01\]{
    --tw-scale-x: 1.01;
    --tw-scale-y: 1.01;
    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));
  }

  .group:hover .group-hover\:text-\[var\(--color-primary\)\]{
    color: var(--color-primary);
  }

  .group:hover .group-hover\:text-jobb-yellow{
    --tw-text-opacity: 1;
    color: rgb(253 191 89 / var(--tw-text-opacity));
  }
}

@media (min-width: 400px){
  .xs\:-right-28{
    right: -7rem;
  }

  .xs\:block{
    display: block;
  }

  .xs\:hidden{
    display: none;
  }
}

@media (min-width: 640px){
  .sm\:pointer-events-auto{
    pointer-events: auto;
  }

  .sm\:right-20{
    right: 5rem;
  }

  .sm\:top-\[calc\(100\%-20px\)\]{
    top: calc(100% - 20px);
  }

  .sm\:order-1{
    order: 1;
  }

  .sm\:order-2{
    order: 2;
  }

  .sm\:-mr-4{
    margin-right: -1rem;
  }

  .sm\:-mt-14{
    margin-top: -3.5rem;
  }

  .sm\:ml-10{
    margin-left: 2.5rem;
  }

  .sm\:ml-11{
    margin-left: 2.75rem;
  }

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

  .sm\:mr-4{
    margin-right: 1rem;
  }

  .sm\:mt-0{
    margin-top: 0px;
  }

  .sm\:block{
    display: block;
  }

  .sm\:inline-flex{
    display: inline-flex;
  }

  .sm\:contents{
    display: contents;
  }

  .sm\:hidden{
    display: none;
  }

  .sm\:min-w-\[15\.9rem\]{
    min-width: 15.9rem;
  }

  .sm\:max-w-none{
    max-width: none;
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sm\:justify-end{
    justify-content: flex-end;
  }

  .sm\:gap-x-20{
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .sm\:gap-x-5{
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .sm\:p-3{
    padding: 0.75rem;
  }

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

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

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

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

@media (min-width: 768px){
  .md\:static{
    position: static;
  }

  .md\:top-\[calc\(100\%-32px\)\]{
    top: calc(100% - 32px);
  }

  .md\:-mt-14{
    margin-top: -3.5rem;
  }

  .md\:ml-0{
    margin-left: 0px;
  }

  .md\:ml-3{
    margin-left: 0.75rem;
  }

  .md\:ml-3\.5{
    margin-left: 0.875rem;
  }

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

  .md\:block{
    display: block;
  }

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

  .md\:h-14{
    height: 3.5rem;
  }

  .md\:min-w-\[350px\]{
    min-width: 350px;
  }

  .md\:-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));
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .md\:gap-x-28{
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }

  .md\:gap-x-9{
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }

  .md\:p-4{
    padding: 1rem;
  }

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

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

  .md\:pr-16{
    padding-right: 4rem;
  }

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

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

  .md\:text-4\.75xl{
    font-size: 2.8125rem;
    line-height: 1.3;
  }
}

@media (min-width: 1024px){
  .lg\:-top-7{
    top: -1.75rem;
  }

  .lg\:bottom-\[217px\]{
    bottom: 217px;
  }

  .lg\:top-\[calc\(100\%-32px\)\]{
    top: calc(100% - 32px);
  }

  .lg\:-ml-\[22rem\]{
    margin-left: -22rem;
  }

  .lg\:-mt-20{
    margin-top: -5rem;
  }

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

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:mt-\[7\.5rem\]{
    margin-top: 7.5rem;
  }

  .lg\:block{
    display: block;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:grid{
    display: grid;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:h-64{
    height: 16rem;
  }

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

  .lg\:h-full{
    height: 100%;
  }

  .lg\:max-h-\[51rem\]{
    max-height: 51rem;
  }

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

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

  .lg\:w-auto{
    width: auto;
  }

  .lg\:min-w-\[500px\]{
    min-width: 500px;
  }

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

  .lg\:max-w-\[470px\]{
    max-width: 470px;
  }

  .lg\:max-w-none{
    max-width: none;
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .lg\:gap-12{
    gap: 3rem;
  }

  .lg\:gap-x-16{
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .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\:space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse));
  }

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

  .lg\:pl-16{
    padding-left: 4rem;
  }

  .lg\:pl-5{
    padding-left: 1.25rem;
  }

  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-\[1\.1875rem\]{
    font-size: 1.1875rem;
  }

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

@media (min-width: 1120px){
  .\31lg\:absolute{
    position: absolute;
  }

  .\31lg\:-right-\[3\.7rem\]{
    right: -3.7rem;
  }

  .\31lg\:top-\[19vmin\]{
    top: 19vmin;
  }

  .\31lg\:-ml-\[22rem\]{
    margin-left: -22rem;
  }

  .\31lg\:-mr-80{
    margin-right: -20rem;
  }

  .\31lg\:mt-0{
    margin-top: 0px;
  }

  .\31lg\:mt-14{
    margin-top: 3.5rem;
  }

  .\31lg\:mt-\[35vmin\]{
    margin-top: 35vmin;
  }

  .\31lg\:block{
    display: block;
  }

  .\31lg\:flex{
    display: flex;
  }

  .\31lg\:hidden{
    display: none;
  }

  .\31lg\:h-\[77vh\]{
    height: 77vh;
  }

  .\31lg\:h-screen{
    height: 100vh;
  }

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

  .\31lg\:w-1\/4{
    width: 25%;
  }

  .\31lg\:w-3\/4{
    width: 75%;
  }

  .\31lg\:w-\[calc\(100\%-5\%\)\]{
    width: calc(100% - 5%);
  }

  .\31lg\:flex-row{
    flex-direction: row;
  }

  .\31lg\:pl-14{
    padding-left: 3.5rem;
  }

  .\31lg\:pl-8{
    padding-left: 2rem;
  }

  .\31lg\:pt-20{
    padding-top: 5rem;
  }

  .\31lg\:text-left{
    text-align: left;
  }
}

@media (min-width: 1280px){
  .xl\:bottom-\[158px\]{
    bottom: 158px;
  }

  .xl\:order-2{
    order: 2;
  }

  .xl\:order-3{
    order: 3;
  }

  .xl\:-ml-\[19rem\]{
    margin-left: -19rem;
  }

  .xl\:-mr-44{
    margin-right: -11rem;
  }

  .xl\:mt-1{
    margin-top: 0.25rem;
  }

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

  .xl\:block{
    display: block;
  }

  .xl\:hidden{
    display: none;
  }

  .xl\:h-72{
    height: 18rem;
  }

  .xl\:h-\[82vh\]{
    height: 82vh;
  }

  .xl\:max-h-\[clamp\(50rem\2c 60vmax\2c 57\.2rem\)\]{
    max-height: clamp(50rem,60vmax,57.2rem);
  }

  .xl\:w-2\/5{
    width: 40%;
  }

  .xl\:w-3\/5{
    width: 60%;
  }

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

  .xl\:min-w-\[600px\]{
    min-width: 600px;
  }

  .xl\:max-w-\[500px\]{
    max-width: 500px;
  }

  .xl\:grid-cols-\[auto_510px_auto\]{
    grid-template-columns: auto 510px auto;
  }

  .xl\:gap-16{
    gap: 4rem;
  }

  .xl\:gap-x-10{
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .xl\:gap-x-20{
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .xl\:border-l{
    border-left-width: 1px;
  }

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

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

  .xl\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .xl\:pl-12{
    padding-left: 3rem;
  }

  .xl\:pl-28{
    padding-left: 7rem;
  }

  .xl\:pr-20{
    padding-right: 5rem;
  }

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

  .xl\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

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

  .xl\:text-\[1\.25rem\]{
    font-size: 1.25rem;
  }
}

@media (min-width: 1390px){
  .min-\[1390px\]\:mr-12{
    margin-right: 3rem;
  }
}

@media (min-width: 1500px){
  .min-\[1500px\]\:block{
    display: block;
  }
}

@media (min-width: 1536px){
  .\32xl\:bottom-\[162px\]{
    bottom: 162px;
  }

  .\32xl\:-ml-52{
    margin-left: -13rem;
  }

  .\32xl\:-mr-40{
    margin-right: -10rem;
  }

  .\32xl\:mr-\[15\%\]{
    margin-right: 15%;
  }

  .\32xl\:mt-0{
    margin-top: 0px;
  }

  .\32xl\:block{
    display: block;
  }

  .\32xl\:hidden{
    display: none;
  }

  .\32xl\:h-\[85vh\]{
    height: 85vh;
  }

  .\32xl\:max-h-\[clamp\(57\.2rem\2c 50\.34vmax\2c 60\.4rem\)\]{
    max-height: clamp(57.2rem,50.34vmax,60.4rem);
  }

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

  .\32xl\:grid-cols-\[auto_490px_auto\]{
    grid-template-columns: auto 490px auto;
  }

  .\32xl\:gap-x-28{
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }

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

  .\32xl\:pl-\[4\.5rem\]{
    padding-left: 4.5rem;
  }

  .\32xl\:pr-20{
    padding-right: 5rem;
  }

  .\32xl\:pr-32{
    padding-right: 8rem;
  }

  .\32xl\:pt-16{
    padding-top: 4rem;
  }

  .\32xl\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1700px){
  .\33xl\:-ml-40{
    margin-left: -10rem;
  }

  .\33xl\:-mr-32{
    margin-right: -8rem;
  }

  .\33xl\:block{
    display: block;
  }

  .\33xl\:hidden{
    display: none;
  }

  .\33xl\:h-\[86vh\]{
    height: 86vh;
  }

  .\33xl\:w-full{
    width: 100%;
  }

  .\33xl\:max-w-\[600px\]{
    max-width: 600px;
  }

  .\33xl\:pl-20{
    padding-left: 5rem;
  }

  .\33xl\:pl-\[5\.5rem\]{
    padding-left: 5.5rem;
  }

  .\33xl\:text-4\.5xl{
    font-size: 2.5rem;
    line-height: 1.3;
  }
}
