
/*
One important thing to note about postcss-import is that it strictly adheres to the CSS spec
 and disallows @import statements anywhere except at the very top of a file.
 that's why
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
 before @import won't work.
 use @import for these layers!
 */

/*
! tailwindcss v3.3.3 | 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.
*/

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: 'Jost', 'Helvetica Neue', sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

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

*, ::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%;
}

@media (min-width: 520px){

    .container{
        max-width: 520px;
    }
}

@media (min-width: 640px){

    .container{
        max-width: 640px;
    }
}

@media (min-width: 768px){

    .container{
        max-width: 768px;
    }
}

@media (min-width: 800px){

    .container{
        max-width: 800px;
    }
}

@media (min-width: 1024px){

    .container{
        max-width: 1024px;
    }
}

@media (min-width: 1240px){

    .container{
        max-width: 1240px;
    }
}

@media (min-width: 1400px){

    .container{
        max-width: 1400px;
    }
}

@media (min-width: 1680px){

    .container{
        max-width: 1680px;
    }
}

@media (min-width: 1880px){

    .container{
        max-width: 1880px;
    }
}

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

.visible{
    visibility: visible;
}

.static{
    position: static;
}

.fixed{
    position: fixed;
}

.absolute{
    position: absolute;
}

.\!relative{
    position: relative !important;
}

.relative{
    position: relative;
}

.sticky{
    position: sticky;
}

.bottom-0{
    bottom: 0px;
}

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

.left-0{
    left: 0px;
}

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

.left-4{
    left: 1rem;
}

.right-0{
    right: 0px;
}

.right-4{
    right: 1rem;
}

.top-0{
    top: 0px;
}

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

.top-20{
    top: 5rem;
}

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

.order-2{
    order: 2;
}

.m-0{
    margin: 0px;
}

.mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

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

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

.\!mb-1\.5{
    margin-bottom: 0.375rem !important;
}

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

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

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

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

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

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

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

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

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

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

.mb-9{
    margin-bottom: 2.25rem;
}

.mb-theme-md{
    margin-bottom: 40px;
}

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

.mt-0\.5{
    margin-top: 0.125rem;
}

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

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

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

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

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

.block{
    display: block;
}

.inline{
    display: inline;
}

.flex{
    display: flex;
}

.table{
    display: table;
}

.grid{
    display: grid;
}

.contents{
    display: contents;
}

.hidden{
    display: none;
}

.aspect-square{
    aspect-ratio: 1 / 1;
}

.h-5{
    height: 1.25rem;
}

.h-7{
    height: 1.75rem;
}

.h-appHeight{
    height: var(--app-height);
}

.h-auto{
    height: auto;
}

.h-full{
    height: 100%;
}

.min-h-\[calc\(100vh_-_theme\(space\.theme-xl\)\)\]{
    min-height: calc(100vh - 160px);
}

.w-5{
    width: 1.25rem;
}

.w-7{
    width: 1.75rem;
}

.w-auto{
    width: auto;
}

.w-full{
    width: 100%;
}

.max-w-inner-content{
    max-width: 912px;
}

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

.grow{
    flex-grow: 1;
}

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

.rotate-180{
    --tw-rotate: 180deg;
    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));
}

.resize{
    resize: both;
}

.grid-cols-themeGrid{
    grid-template-columns: repeat(auto-fill, minmax(250px, 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;
}

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

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

.gap-4{
    gap: 1rem;
}

.gap-6{
    gap: 1.5rem;
}

.space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse));
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

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

.overflow-auto{
    overflow: auto;
}

.overflow-hidden{
    overflow: hidden;
}

.truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rounded{
    border-radius: 0.25rem;
}

.border{
    border-width: 1px;
}

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

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

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

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

.bg-blueDark{
    --tw-bg-opacity: 1;
    background-color: rgb(29 23 79 / var(--tw-bg-opacity));
}

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

.fill-current{
    fill: currentColor;
}

.stroke-current{
    stroke: currentColor;
}

.px-0{
    padding-left: 0px;
    padding-right: 0px;
}

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

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

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

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

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

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

.\!pt-0{
    padding-top: 0px !important;
}

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

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

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

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

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

.pb-3{
    padding-bottom: 0.75rem;
}

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

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

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

.pl-6{
    padding-left: 1.5rem;
}

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

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

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

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

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

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

.font-sans{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
}

.text-xs{
    font-size: 0.6818181818181818rem;
    line-height: 1.5;
}

.text-xxs{
    font-size: 0.5454545454545454rem;
    line-height: 1.25;
}

.uppercase{
    text-transform: uppercase;
}

.lowercase{
    text-transform: lowercase;
}

.italic{
    font-style: italic;
}

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

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

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

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

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

.outline{
    outline-style: solid;
}

.blur{
    --tw-blur: blur(8px);
    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);
}

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

.ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/*
@tailwind base;
@tailwind components;
@tailwind utilities;
*/

/* jost-300 - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300;
    src: url('../assets/fonts/Jost/jost-v14-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jost-regular - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/Jost/jost-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jost-500 - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    src: url('../assets/fonts/Jost/jost-v14-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jost-600 - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/Jost/jost-v14-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* eb-garamond-regular - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'EB Garamond';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/Garamond/eb-garamond-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* eb-garamond-italic - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'EB Garamond';
    font-style: italic;
    font-weight: 400;
    src: url('../assets/fonts/Garamond/eb-garamond-v26-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* eb-garamond-600 - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'EB Garamond';
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/Garamond/eb-garamond-v26-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* eb-garamond-600italic - latin */

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'EB Garamond';
    font-style: italic;
    font-weight: 600;
    src: url('../assets/fonts/Garamond/eb-garamond-v26-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

h1, .typo-h1{
    margin-bottom: 2.25rem;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 2.1818181818181817rem;
    line-height: 1.0999999999999999;
}

h2, .typo-h2{
    margin-bottom: 2.25rem;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 1.6363636363636365rem;
    line-height: 1.1;
}

h3, .typo-h3{
    margin-bottom: 0.5rem;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 1.1818181818181819rem;
    line-height: 1.2999999999999998;
    font-weight: 400;
}

.entry-content h3, .entry-content .typo-h3{
    margin-bottom: 1.5rem;
}

h4, .typo-h4, .typo-kicker{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 0.7272727272727273rem;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h4{
    margin-bottom: 1.25rem;
}

h5, .typo-h5{
    margin-bottom: 0.75rem;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 0.5454545454545454rem;
    line-height: 1.25;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h6, .typo-h6{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 0.8181818181818182rem;
    line-height: 1.2999999999999998;
    font-weight: 400;
}

.typo-subtitle{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 1.1818181818181819rem;
    line-height: 1.2999999999999998;
    font-weight: 400;
}

.typo-base{
    font-family: 'EB Garamond', 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.5;
}

.typo-base-sm{
    font-family: 'EB Garamond', 'Times New Roman', Times, serif;
    font-size: 0.9090909090909091rem;
    line-height: 1.3;
}

.typo-base-sans{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 0.8181818181818182rem;
    line-height: 1.2999999999999998;
}

.typo-intro{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 1.0909090909090908rem;
    line-height: 1.25;
    font-weight: 300;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.typo-sol{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 2.909090909090909rem;
    font-weight: 300;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    line-height: 1.1;
}

@media (min-width: 1240px) {

.typo-sol {
        font-size: clamp(3rem, 4vw, 6rem)
}
    }

.typo-link{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    text-decoration-line: none;
}

.typo-link:hover, .typo-link:focus{
    --tw-text-opacity: 1;
    color: rgb(126 148 180 / var(--tw-text-opacity));
}

.typo-caption{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 0.6818181818181818rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.05em;
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
}

main a:not(.btn){
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    text-decoration-line: none;
}

main a:not(.btn):hover,main a:not(.btn):focus{
    --tw-text-opacity: 1;
    color: rgb(126 148 180 / var(--tw-text-opacity));
}

main a.btn, main button:not(.home_slider_nav_button){
    display: inline-block;
    border-width: 1px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 0.7272727272727273rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

main a.btn.btn-primary, main button:not(.home_slider_nav_button).btn-primary{
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}

main a.btn.btn-primary:hover, main a.btn.btn-primary:focus, main button:not(.home_slider_nav_button).btn-primary:hover, main button:not(.home_slider_nav_button).btn-primary:focus{
    --tw-border-opacity: 1;
    border-color: rgb(126 148 180 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(126 148 180 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

main a.btn.btn-secondary, main button:not(.home_slider_nav_button).btn-secondary{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

main a.btn.btn-secondary:hover, main a.btn.btn-secondary:focus, main button:not(.home_slider_nav_button).btn-secondary:hover, main button:not(.home_slider_nav_button).btn-secondary:focus{
    --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(126 148 180 / var(--tw-text-opacity));
}

a[href$='.pdf']{
    display: inline-flex !important;
    align-items: center;
}

a[href$='.pdf']:not(.btn)::after{
    margin-left: 0.25rem;
    display: inline-block;
    height: 0.625rem;
    width: 0.625rem;
    background-size: contain;
    background-repeat: no-repeat;
            content: "";
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4815 7.48118L10.0056 15.2369L1.52974 7.48118M9.99999 15.2L9.99999 0M1 19H10H19' stroke='%234E6486' stroke-width='2'/%3E%3C/svg%3E%0A");
}

a[href$='.pdf']:not(.btn):hover::after, a[href$='.pdf']:not(.btn):focus::after {
                background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4815 7.48118L10.0056 15.2369L1.52974 7.48118M9.99999 15.2L9.99999 0M1 19H10H19' stroke='%237E94B4' stroke-width='2'/%3E%3C/svg%3E%0A");
            }

a[href$='.pdf'].btn::before{
    margin-right: 0.375rem;
    display: inline-block;
    height: 0.75rem;
    width: 0.75rem;
    background-size: contain;
    background-repeat: no-repeat;
            content: "";
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4815 7.48118L10.0056 15.2369L1.52974 7.48118M9.99999 15.2L9.99999 0M1 19H10H19' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E%0A");
}

a[href$='.pdf'].btn:hover::before, a[href$='.pdf'].btn:focus::before {
                background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4815 7.48118L10.0056 15.2369L1.52974 7.48118M9.99999 15.2L9.99999 0M1 19H10H19' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E%0A");
            }

:root{
    font-size: 20px;
    line-height: 1.5;
}

@media (min-width: 768px){

    :root{
        font-size: 22px;
        line-height: 1.5;
    }
}

:root {
    //scroll-behavior: smooth;
}

* {
    scroll-margin-top: 2rem;
}

body:not(.wp-admin){
    font-family: 'EB Garamond', 'Times New Roman', Times, serif;
}

body:not(.wp-admin):not(.home){
    padding-top: 2.5rem;
}

p{
    margin-bottom: 1.5rem;
}

p:last-child{
    margin-bottom: 0px;
}

header a, footer a, nav a{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    text-decoration-line: none;
}

.post-thumbnail img{
    height: auto !important;
    width: 100%;
    max-width: none !important;
    -o-object-fit: cover;
       object-fit: cover;
}

.post-thumbnail.aspect-square img{
    height: 100% !important;
}

.entry-content ol, .entry-content ul{
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.entry-content ol li, .entry-content ul li{
    margin-bottom: 1rem;
}

.entry-content ol{
    list-style-type: decimal;
}

.entry-content ul{
    list-style-type: disc;
}

.desktop-only{
    display: none;
}

@media (min-width: 640px) {
    .desktop-only{
        display: block;
    }
    .wp-block-columns.desktop-only{
        display: flex;
    }
    .mobile-only{
        display: none;
    }
}

.menu-wrapper{
    margin-top: 0.625rem;
}

@media (min-width: 768px){

    .menu-wrapper{
        margin-top: 0px;
    }
}

.menu-wrapper{
    flex-direction: column;
    align-items: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 1024px) {

.menu-wrapper{
        display: flex;
        width: auto;
        flex-direction: row;
        justify-content: flex-end;
    }

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

.menu-wrapper{
        padding: 0px;
        line-height: 1;
    }
    }

.menu-wrapper li{
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 1.1818181818181819rem;
    line-height: 1.2999999999999998;
    font-weight: 400;
}

 .entry-content .menu-wrapper li{
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px){

    .menu-wrapper li{
        margin-bottom: 0px;
        font-size: 0.7272727272727273rem;
        line-height: 1.5;
    }
}

.menu-wrapper li {
        word-spacing: -0.1em;
    }

#masthead #masthead_inner, body.home #masthead.masthead--scrolled #masthead_inner{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}

#masthead #masthead_inner #logo, body.home #masthead.masthead--scrolled #masthead_inner #logo{
    --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));
}

#masthead #masthead_inner .logo-glyph, body.home #masthead.masthead--scrolled #masthead_inner .logo-glyph{
    fill: currentColor;
}

body.home #masthead.shrink-logo #masthead_inner #logo{
    --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));
}

body.home #masthead #masthead_inner{
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
}

body.home #masthead #masthead_inner #logo{
    transform-origin: top left;
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.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));
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
}

@media (min-width: 768px){

    body.home #masthead #masthead_inner #logo{
        --tw-scale-x: 1.5;
        --tw-scale-y: 1.5;
        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));
    }
}

@media (min-width: 1024px){

    body.home #masthead #masthead_inner #logo{
        --tw-scale-x: 1.75;
        --tw-scale-y: 1.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));
    }
}

body.home #masthead #masthead_inner .logo-glyph{
    fill: none;
}

#masthead a:hover:not(.logo-link), #masthead a:focus:not(.logo-link), #masthead .current-menu-item:not(.menu-item-54):not(.logo-link){
    --tw-text-opacity: 1;
    color: rgb(126 148 180 / var(--tw-text-opacity));
}

#masthead.masthead--open{
    background-color: rgba(0, 0, 0, 0.5);
}

.centered-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    padding-top: 3rem;
}

.centered-inner-wrapper{
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
}

@media (min-width: 1024px){

    .centered-inner-wrapper{
        max-width: 912px;
    }
}

.centered-content-wrapper{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    max-width: 776px;
}

@media (min-width: 768px){

    .centered-content-wrapper{
        margin-left: 2.5rem;
        margin-right: 2.5rem;
    }
}

.type-event .more-link, .type-publication .more-link{
    display: none;
}

.wp-block-file a{
    margin-bottom: 0.5rem;
    display: block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.wp-block-file a.wp-block-file__button{
    margin-left: 1.5rem;
    display: inline-block;
}

@media (min-width: 768px) {

.wp-block-file a{
        margin-bottom: 0px;
        display: inline;
    }
        .wp-block-file a.wp-block-file__button{
        margin-left: 0.5rem;
        display: inline;
    }
    }

/*@import "_sections.pcss";*/

.home-slider-article{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transition-property: opacity;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.home-slider-article:not(.active){
    opacity: 0;
}

.home-slider-post-thumbnail, .post-thumbnail.home-slider-post-thumbnail img{
    height: 100% !important;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home-slide-entry-content{
    position: absolute;
    bottom: 0px;
    right: 0px;
    max-height: 50%;
    max-width: 540px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
}

.home-slide-entry-content h3,.home-slide-entry-content .typo-h3{
    margin-bottom: 1.5rem;
}

.home-slide-entry-content{
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 1.0909090909090908rem;
    line-height: 1.25;
    font-weight: 300;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.home-slide-entry-content ol,.home-slide-entry-content ul{
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.home-slide-entry-content ol li,.home-slide-entry-content ul li{
    margin-bottom: 1rem;
}

.home-slide-entry-content ol{
    list-style-type: decimal;
}

.home-slide-entry-content ul{
    list-style-type: disc;
}

@media (min-width: 640px){

    .home-slide-entry-content{
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (min-width: 768px){

    .home-slide-entry-content{
        max-height: 66%;
    }
}

@media (orientation: landscape){

    .home-slide-entry-content{
        bottom: 10%;
        right: 8%;
    }
}

.home-slide-entry-content {

    /* Hide scrollbar for IE, Edge and Firefox */  /* IE and Edge */  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */

.home-slide-entry-content::-webkit-scrollbar {
        display: none;
    }

.home-slide-entry-content{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (orientation: portrait){

    .home-section .post-thumbnail img{
        height: 100% !important;
    }
}

.home-section-wide{
    --tw-bg-opacity: 1;
    background-color: rgb(126 148 180 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1680px) {
        .home-section-wide figure.post-thumbnail{
        margin-left: auto;
        margin-right: auto;
        max-width: 1024px;
        padding-top: 3rem;
    }
    }

#contact .wp-block-columns{
    gap: 5rem;
}

@media (min-width: 768px){

    #contact .wp-block-columns{
        gap: 2rem;
    }
}

@media (min-width: 1024px){

    #contact .wp-block-columns{
        gap: 5rem;
    }
}

main div.wpforms-container-full{
    margin: 0px;
}

main div.wpforms-container-full .wpforms-form .wpforms-field{
    margin-bottom: 1.75rem;
    padding: 0px;
}

main div.wpforms-container-full .wpforms-form input[type=date],
        main div.wpforms-container-full .wpforms-form input[type=datetime],
        main div.wpforms-container-full .wpforms-form input[type=datetime-local],
        main div.wpforms-container-full .wpforms-form input[type=email],
        main div.wpforms-container-full .wpforms-form input[type=month],
        main div.wpforms-container-full .wpforms-form input[type=number],
        main div.wpforms-container-full .wpforms-form input[type=password],
        main div.wpforms-container-full .wpforms-form input[type=range],
        main div.wpforms-container-full .wpforms-form input[type=search],
        main div.wpforms-container-full .wpforms-form input[type=tel],
        main div.wpforms-container-full .wpforms-form input[type=text],
        main div.wpforms-container-full .wpforms-form input[type=time],
        main div.wpforms-container-full .wpforms-form input[type=url],
        main div.wpforms-container-full .wpforms-form input[type=week],
        main div.wpforms-container-full .wpforms-form select,
        main div.wpforms-container-full .wpforms-form textarea{
    height: auto;
    width: 100%;
    max-width: none;
    border-left-width: 0px;
    border-right-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    background-color: transparent;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    font-family: 'EB Garamond', 'Times New Roman', Times, serif;
    font-size: 0.9090909090909091rem;
    line-height: 1.3;
}

main div.wpforms-container-full .wpforms-form input[type=date]:focus,
        main div.wpforms-container-full .wpforms-form input[type=datetime]:focus,
        main div.wpforms-container-full .wpforms-form input[type=datetime-local]:focus,
        main div.wpforms-container-full .wpforms-form input[type=email]:focus,
        main div.wpforms-container-full .wpforms-form input[type=month]:focus,
        main div.wpforms-container-full .wpforms-form input[type=number]:focus,
        main div.wpforms-container-full .wpforms-form input[type=password]:focus,
        main div.wpforms-container-full .wpforms-form input[type=range]:focus,
        main div.wpforms-container-full .wpforms-form input[type=search]:focus,
        main div.wpforms-container-full .wpforms-form input[type=tel]:focus,
        main div.wpforms-container-full .wpforms-form input[type=text]:focus,
        main div.wpforms-container-full .wpforms-form input[type=time]:focus,
        main div.wpforms-container-full .wpforms-form input[type=url]:focus,
        main div.wpforms-container-full .wpforms-form input[type=week]:focus,
        main div.wpforms-container-full .wpforms-form select:focus,
        main div.wpforms-container-full .wpforms-form textarea:focus{
    border-left-width: 0px;
    border-right-width: 0px;
    border-top-width: 0px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-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);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

main div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium{
    height: 7rem;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

main div.wpforms-container-full .wpforms-form .wpforms-field-label{
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    font-family: 'EB Garamond', 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.5;
}

main div.wpforms-container-full .wpforms-form .wpforms-field-textarea .wpforms-field-label{
    margin-bottom: 1.75rem;
}

main div.wpforms-container-full .wpforms-form .wpforms-required-label{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

main div.wpforms-container-full .wpforms-form .wpforms-submit-container{
    margin: 0px;
    padding: 0px;
}

main div.wpforms-container-full .wpforms-form input[type=submit]:not(:hover):not(:active),
        main div.wpforms-container-full .wpforms-form button[type=submit]:not(:hover):not(:active),
        main div.wpforms-container-full .wpforms-form .wpforms-page-button:not(:hover):not(:active){
    border-width: 1px;
    border-style: solid;
    --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));
    --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);
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-size: 0.7272727272727273rem;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

main div.wpforms-container-full .wpforms-form input[type=submit]:not(:hover):not(:active):hover,
        main div.wpforms-container-full .wpforms-form button[type=submit]:not(:hover):not(:active):hover,
        main div.wpforms-container-full .wpforms-form .wpforms-page-button:not(:hover):not(:active):hover{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}

main div.wpforms-container-full .wpforms-form input[type=submit]:hover,
        main div.wpforms-container-full .wpforms-form input[type=submit]:active,
        main div.wpforms-container-full .wpforms-form button[type=submit]:hover,
        main div.wpforms-container-full .wpforms-form button[type=submit]:active,
        main div.wpforms-container-full .wpforms-form .wpforms-page-button:hover,
        main div.wpforms-container-full .wpforms-form .wpforms-page-button:active {
            background: #ffffff; /* tailwind doesn't seem to override background gradient */ border-width: 1px; border-style: solid; --tw-border-opacity: 1; border-color: rgb(255 255 255 / var(--tw-border-opacity)); --tw-text-opacity: 1; color: rgb(78 100 134 / 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); font-family: 'Jost', 'Helvetica Neue', sans-serif; font-size: 0.7272727272727273rem; line-height: 1.5; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
        }

main div.wpforms-container-full .wpforms-confirmation-container-full,
    main div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message){
    border-style: none;
    background-color: transparent;
    padding: 0px;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.wpforms-container .wpforms-recaptcha-container{
    margin-bottom: 1.5rem;
}

/*@import "_footer.pcss";*/

.after\:content-\[\'\|\'\]::after{
    --tw-content: '|';
    content: var(--tw-content);
}

.last-of-type\:after\:hidden:last-of-type::after{
    content: var(--tw-content);
    display: none;
}

@media (min-width: 640px){

    .sm\:left-16{
        left: 4rem;
    }

    .sm\:order-none{
        order: 0;
    }

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

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

    .sm\:contents{
        display: contents;
    }

    .sm\:w-56{
        width: 14rem;
    }

    .sm\:basis-1\/2{
        flex-basis: 50%;
    }

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

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

@media (min-width: 768px){

    .md\:absolute{
        position: absolute;
    }

    .md\:relative{
        position: relative;
    }

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

    .md\:top-0{
        top: 0px;
    }

    .md\:top-24{
        top: 6rem;
    }

    .md\:mx-10{
        margin-left: 2.5rem;
        margin-right: 2.5rem;
    }

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

    .md\:mb-9{
        margin-bottom: 2.25rem;
    }

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

    .md\:block{
        display: block;
    }

    .md\:hidden{
        display: none;
    }

    .md\:h-0{
        height: 0px;
    }

    .md\:h-8{
        height: 2rem;
    }

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

    .md\:w-6{
        width: 1.5rem;
    }

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

    .md\:basis-1\/4{
        flex-basis: 25%;
    }

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

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

    .md\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }

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

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

    .md\:pb-\[100\%\]{
        padding-bottom: 100%;
    }

    .md\:pr-0{
        padding-right: 0px;
    }

    .group:hover .md\:group-hover\:block{
        display: block;
    }

    .group:hover .md\:group-hover\:opacity-30{
        opacity: 0.3;
    }
}

@media (min-width: 1024px){

    .lg\:left-28{
        left: 7rem;
    }

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

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

    .lg\:mx-0{
        margin-left: 0px;
        margin-right: 0px;
    }

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

    .lg\:block{
        display: block;
    }

    .lg\:flex{
        display: flex;
    }

    .lg\:hidden{
        display: none;
    }

    .lg\:basis-1\/3{
        flex-basis: 33.333333%;
    }

    .lg\:basis-2\/3{
        flex-basis: 66.666667%;
    }

    .lg\:items-end{
        align-items: flex-end;
    }

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

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

    .lg\:gap-6{
        gap: 1.5rem;
    }

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

    .lg\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width: 1240px){

    .xl\:mx-0{
        margin-left: 0px;
        margin-right: 0px;
    }

    .xl\:h-9{
        height: 2.25rem;
    }

    .xl\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (orientation: portrait){

    .portrait\:hidden{
        display: none;
    }

    .portrait\:aspect-3\/2{
        aspect-ratio: 3 / 2;
    }

    .portrait\:object-left{
        -o-object-position: left;
           object-position: left;
    }

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

@media (min-width: 640px){

    @media (orientation: portrait){

        .sm\:portrait\:top-\[20\%\]{
            top: 20%;
        }
    }
}

@media (orientation: landscape){

    .landscape\:hidden{
        display: none;
    }

    .landscape\:h-\[48\.59vw\]{
        height: 48.59vw;
    }
}

@media (min-width: 1024px){

    @media (orientation: landscape){

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

@media (min-width: 1400px){

    @media (orientation: landscape){

        .\32xl\:landscape\:top-\[20\%\]{
            top: 20%;
        }
    }
}
