/* ============================================
   NAVIGATION STYLES - Consolidated Nested CSS
   ============================================ */

.menu-toggle-container {
  position: relative;
}

.nav-group {
  height: 64px;
  background: white;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  @media (min-width: 767px) {
    background: transparent;
  }
  .logo {
    width: 5rem;
    height: auto;
    @media (min-width: 1201px) {
      width: 7.5rem;
    }
  }
  .header-menu {
    display: none;
    padding: 0 1.25rem 2rem 1.25rem;
    background-color: white;
    overflow-y: auto;
    max-height: calc(100vh - 64px - 24px);
    position: absolute;
    top: calc(100% + 24px);
    left: 0;
    right: 0;
    z-index: 1000;
    border-radius: 0 0 10px 10px;
    @media (min-width: 767px) {
      position: static;

      display: flex;

      height: 100%;

      align-items: center;

      padding: 0;

      background-color: transparent;

      overflow-y: visible;
    }
  }
  #menu-toggle.active ~ .header-menu {
    display: flex;
    flex-direction: column;
    min-width: 300px;
  }
}

#menu-main-menu {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  padding-top: 2rem;
  @media (min-width: 767px) {
    flex-direction: row;

    height: 100%;

    align-items: center;

    padding-top: 0;
  }
  @media (min-width: 1201px) {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  > li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    padding-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    @media (min-width: 767px) {
      align-items: center;

      padding: 0;
    }
    @media (min-width: 1201px) {
      font-size: 1rem;
    }
    &:first-child {
      padding-top: 0;
    }
    > a {
      position: relative;
      text-transform: capitalize;
      transition: color 0.25s ease;
    }
    /* Active state color (mobile & tablet) */
    &.active > a,
    &:focus > a {
      color: #00cbe6 !important;
    }
    /* Desktop only: hover color change */
    @media (min-width: 1024px) {
      &:hover > a {
        color: #00cbe6 !important;
      }
    }
    /* Mobile & Tablet: show submenu when active */
    &.active > ul.sub-menu {
      display: block;
      padding-top: 20px;
      @media (min-width: 767px) {
        padding-top: 0;

        display: grid;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
      }
    }
    /* Desktop only: show submenu on hover/focus with animation */
    @media (min-width: 1024px) {
      &:hover > ul.sub-menu,
      &:focus > ul.sub-menu {
        display: grid;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }
    }
  }
  .menu-item-has-children {
    position: relative;
    > a {
      padding-right: 22px;
      &::after {
        content: "";
        width: 14px;
        height: 8px;
        margin-top: -3px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        pointer-events: none;
        position: absolute;
        top: 50%;
        right: 0;
        transition: transform 0.25s ease;
      }
    }
  }
  ul.sub-menu {
    display: none;
    background: white;
    @media (min-width: 767px) {
      position: absolute;

      top: calc(100% + 36px);

      right: 0;

      z-index: 1000;

      display: grid;

      row-gap: 1rem;

      padding: 24px 16px !important;

      min-width: 310px;

      margin-top: 0;

      opacity: 0;

      visibility: hidden;

      border-radius: 10px;

      box-shadow: 0 0 20px rgba(0, 14, 30, 0.2);

      pointer-events: none;

      transform: translateY(10px);

      transition: opacity 0.25s ease, visibility 0.25s ease,
        transform 0.25s ease;
    }
    @media (min-width: 1401px) {
      display: grid;

      grid-template-columns: 1fr 1fr;

      -moz-column-gap: 40px;

           column-gap: 40px;

      min-width: 640px;

      li:nth-child(1) {
        order: 1;
      }

      li:nth-child(2) {
        order: 3;
      }

      li:nth-child(3) {
        order: 5;
      }

      li:nth-child(4) {
        order: 2;
      }

      li:nth-child(5) {
        order: 4;
      }
    }
    /* Invisible bridge for hover continuity (desktop only) */
    @media (min-width: 767px) {
      &::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 36px;
        background: transparent;
      }
    }
    li {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      position: relative;
      padding: 0 0 1rem .75rem;
      &:last-child {
        padding-bottom: 0;
        @media (min-width: 767px) {
          padding-bottom: 1rem;
        }
      }
      @media (min-width: 767px) {
        row-gap: 0.75rem;

        /* height: 60px; */

        /* padding-left: 72px; */

        /* padding-right: 20px; */

        padding: 1rem 20px 1rem 72px;

        border-radius: 5px;
      }
      cursor: pointer;
      transition: background-color 0.25s ease;
      &:hover,
      &:focus {
        color: #00cbe6 !important;
        @media (min-width: 767px) {
          color: inherit !important;

          background-color: #e1e6ea;
        }
      }
      a {
        position: relative;
        text-transform: capitalize;
        span:has(i.icon) {
          position: absolute;
          left: calc(-12px);
          top: 50%;
          transform: translate(-100%, -50%);
          width: 40px;
          height: 40px;
          border-radius: 6px;
          background-color: #002046;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          i.icon {
            color: #fff;
            width: var(--w-icon-size, 24px);
            height: var(--h-icon-size, 24px);
            aspect-ratio: var(--ar-icon-size, 1);
            position: relative;
          }
        }
        @media (max-width: 766px) {
          span:has(i.icon) {
            display: none;
          }
        }
      }
    }
    /*** Custom icon sizes ***/
    li.ind-property {
      --w-icon-size: 22.5px;
      --h-icon-size: 26.21px;
      --ar-icon-size: auto;
    }
    li.ind-construction {
      --w-icon-size: 27px;
      --h-icon-size: 26.87px;
      --ar-icon-size: auto;
    }
    li.ind-restaurants {
      --w-icon-size: 26px;
      --h-icon-size: 26.5px;
      --ar-icon-size: auto;
    }
    li.srv-consulting {
      --w-icon-size: 26px;
      --h-icon-size: 26px;
    }
  }
}

*, ::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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.18 | 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: "Open Sans", system-ui, sans-serif;
  /* 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: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 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 */
  letter-spacing: 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,
input:where([type='button']),
input:where([type='reset']),
input:where([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]:where(:not([hidden="until-found"])) {
  display: none;
}

.h2 {
  overflow-wrap: break-word;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  --tw-text-opacity: 1;
  color: rgb(0 14 30 / var(--tw-text-opacity, 1));
}

@media (min-width: 1201px) {
  .h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1441px) {
  .h2 {
    font-size: 3rem;
  }
}

.h2 strong {
  font-weight: 600;
}

.h2-small {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0em;
  --tw-text-opacity: 1;
  color: rgb(0 14 30 / var(--tw-text-opacity, 1));
}

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

.h2-01 {
  overflow-wrap: break-word;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  --tw-text-opacity: 1;
  color: rgb(0 14 30 / var(--tw-text-opacity, 1));
}

@media (min-width: 1201px) {
  .h2-01 {
    font-size: 2.5rem;
  }
}

.h3__build-your-team {
  overflow-wrap: break-word;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 767px) {
  .h3__build-your-team {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1201px) {
  .h3__build-your-team {
    font-size: 1.125rem;
  }
}

@media (min-width: 1441px) {
  .h3__build-your-team {
    font-size: 1.25rem;
  }
}

.p__build-your-team {
  margin-bottom: 0px;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 14 30 / var(--tw-text-opacity, 1));
}

.has-underline a {
  position: relative;
  height: 24px;
  text-decoration-line: none;
}

.has-underline a:after {
  position: absolute;
  left: 0px;
  bottom: -6px;
  width: 100%;
  border-bottom-width: 1px;
  content: "";
  border-color: currentColor;
  transition: border-color 150ms;
}

.has-branding {
  a.text-brand-500 {
    transition: color 150ms;
  }
}

.has-branding a:hover {
  --tw-text-opacity: 1;
  color: rgb(128 229 243 / var(--tw-text-opacity, 1));
}

.container {
  width: 100%;
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.btn-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(0 203 230 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(0 14 30 / var(--tw-text-opacity, 1));
}

.btn-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(128 229 243 / var(--tw-bg-opacity, 1));
}

.logo-image {
  display: inline-block;
  aspect-ratio: 5/2;
  height: auto;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-mask: url('../images/logo/optimal-logo.svg') center / contain no-repeat;
  mask: url('../images/logo/optimal-logo.svg') center / contain no-repeat;
  background-color: currentColor;
}

header {
  .logo-image {
    width: 5rem;
  }
  .logo-image {
    --tw-text-opacity: 1;
    color: rgb(0 14 30 / var(--tw-text-opacity, 1));
  }
  .logo-image {
    @media (min-width: 1201px) {
      width: 120px;
    }
  }
}

footer {
  a {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  a {
    transition-duration: 150ms;
  }
  .logo-image {
    width: 12.5rem;
  }
  .logo-image {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}

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

.footer-link:hover {
  font-weight: 600;
}

.footer-large-link {
  /* The fixed height and width are to prevent twitching when animating hover state, adjust as necessary */
  height: 28px;
  width: 154px;
  text-wrap: nowrap;
  font-size: 1rem;
  font-weight: 600;
}

.footer-large-link:hover {
  font-size: 17px;
}

@media (min-width: 767px) {
  .footer-large-link {
    font-size: 1.125rem;
  }

  .footer-large-link:hover {
    font-size: 19px;
  }
}

@media (min-width: 1201px) {
  .footer-large-link {
    font-size: 1.25rem;
  }

  .footer-large-link:hover {
    font-size: 21px;
  }
}

/* Testimonial Sliders */

#testimonials-swiper.\!swiper {
}

#testimonials-swiper.swiper {
  .swiper-slide {
    height: auto;
  }
  .swiper-slide {
    .testimonial-card {
      height: 100%;
    }
    .testimonial-card {
      .testimonial-thumbnail-container {
        overflow: hidden;
      }
      .testimonial-thumbnail-container {
        border-radius: 0.375rem;
      }
      .testimonial-thumbnail-container {
        border-width: 0px;
      }
      .testimonial-thumbnail-container {
        background-color: transparent;
      }
      .testimonial-thumbnail-container {
        .testimonial-thumbnail {
          height: 100%;
        }
        .testimonial-thumbnail {
          width: 100%;
        }
        .testimonial-thumbnail {
          -o-object-fit: contain;
             object-fit: contain;
          -o-object-position: center;
             object-position: center;
        }
      }
    }
  }
}

#contact {
  height: 1200px;
  max-height: none;
}

@media ((min-width: 1096px) and (max-width: 1200px)), (min-width: 1240px) {
  #contact {
    height: calc(100vh - 4em);
    max-height: 710px;
  }
}

/* Filter Buttons
  --------------------------------------------- */

.filter-buttons-container {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  > .filter-button {
    text-wrap: nowrap;
  }
  > .filter-button {
    border-radius: 0.375rem;
  }
  > .filter-button {
    border-width: 1px;
  }
  > .filter-button {
    border-color: rgb(0 32 70 / 0.5);
  }
  > .filter-button {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  > .filter-button {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  > .filter-button {
    font-size: 1rem;
  }
  > .filter-button {
    font-weight: 600;
  }
  > .filter-button {
    color: rgb(0 32 70 / 0.5);
  }
  > .filter-button {
    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: 150ms;
  }
  > .filter-button {
    transition-duration: 150ms;
  }
  > .filter-button:hover {
    border-color: transparent;
  }
  > .filter-button:hover {
    background-color: rgb(128 144 163 / 0.5);
  }
  > .filter-button:hover {
    --tw-text-opacity: 1;
    color: rgb(0 32 70 / var(--tw-text-opacity, 1));
  }
  > .filter-button.active {
    --tw-bg-opacity: 1;
    background-color: rgb(0 32 70 / var(--tw-bg-opacity, 1));
  }
  > .filter-button.active {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}

@media (hover: none) and (pointer: coarse) {
  .filter-buttons-container {
    flex-wrap: nowrap;
    overflow: scroll;
    scrollbar-width: none;
  }

  .filter-buttons-container::-webkit-scrollbar {
    display: none;
  }
}

/* Icons
  --------------------------------------------- */

i.icon {
  display: inline-block;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
  background-color: currentColor;
}

i.icon[data-icon="cross"] {
  --icon-url: url('../images/icons/cross.svg');
}

i.icon[data-icon="check"] {
  --icon-url: url('../images/icons/check.svg');
}

i.icon[data-icon="ind-property-management"] {
  --icon-url: url('../images/icons/ind-property-management.svg');
}

i.icon[data-icon="ind-real-estate-investment"] {
  --icon-url: url('../images/icons/ind-real-estate-investment.svg');
}

i.icon[data-icon="teamwork"] {
  --icon-url: url('../images/icons/teamwork.svg');
}

i.icon[data-icon="paper-write"] {
  --icon-url: url('../images/icons/paper-write.svg');
}

i.icon[data-icon="hold-heart"] {
  --icon-url: url('../images/icons/hold-heart.svg');
}

i.icon[data-icon="search-user-check"] {
  --icon-url: url('../images/icons/search-user-check.svg');
}

i.icon[data-icon="clipboard-with-check"] {
  --icon-url: url('../images/icons/clipboard-with-check.svg');
}

i.icon[data-icon="receipt-dollar"] {
  --icon-url: url('../images/icons/receipt-dollar.svg');
}

i.icon[data-icon="working-space-laptop"] {
  --icon-url: url('../images/icons/working-space-laptop.svg');
}

i.icon[data-icon="human-resources-network"] {
  --icon-url: url('../images/icons/human-resources-network.svg');
}

i.icon[data-icon="office-stamp-document"] {
  --icon-url: url('../images/icons/office-stamp-document.svg');
}

i.icon[data-icon="task-finger-show"] {
  --icon-url: url('../images/icons/task-finger-show.svg');
}

i.icon[data-icon="cash-briefcase"] {
  --icon-url: url('../images/icons/cash-briefcase.svg');
}

i.icon[data-icon="seo-search-graph"] {
  --icon-url: url('../images/icons/seo-search-graph.svg');
}

i.icon[data-icon="monitor-transfer"] {
  --icon-url: url('../images/icons/monitor-transfer.svg');
}

i.icon[data-icon="phone-refresh"] {
  --icon-url: url('../images/icons/phone-refresh.svg');
}

i.icon[data-icon="file-stack"] {
  --icon-url: url('../images/icons/file-stack.svg');
}

i.icon[data-icon="shipment-search"] {
  --icon-url: url('../images/icons/shipment-search.svg');
}

i.icon[data-icon="checklist"] {
  --icon-url: url('../images/icons/checklist.svg');
}

i.icon[data-icon="multiple-chat"] {
  --icon-url: url('../images/icons/multiple-chat.svg');
}

i.icon[data-icon="multiple-users"] {
  --icon-url: url('../images/icons/multiple-users.svg');
}

i.icon[data-icon="self-payment-touch-euro"] {
  --icon-url: url('../images/icons/self-payment-touch-euro.svg');
}

i.icon[data-icon="file-text"] {
  --icon-url: url('../images/icons/file-text.svg');
}

i.icon[data-icon="office-drawer"] {
  --icon-url: url('../images/icons/office-drawer.svg');
}

i.icon[data-icon="team-meeting"] {
  --icon-url: url('../images/icons/team-meeting.svg');
}

i.icon[data-icon="loading-half"] {
  --icon-url: url('../images/icons/loading-half.svg');
}

i.icon[data-icon="loading-full"] {
  --icon-url: url('../images/icons/loading-full.svg');
}

/* Modal
  --------------------------------------------- */

body:has(.modal.show) {
  overflow-y: hidden;
}

.modal {
  position: fixed;
  inset: 0px;
  z-index: 1001;
  display: flex;
  display: none;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  background-color: rgb(0 14 30 / 0.8);
  .modal-wrapper {
    position: absolute;
  }
  .modal-wrapper {
    left: 50%;
  }
  .modal-wrapper {
    top: 50%;
  }
  .modal-wrapper {
    display: inline-block;
  }
  .modal-wrapper {
    --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));
  }
  .modal-wrapper {
    --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));
  }
  .modal-wrapper {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
  .modal-wrapper {
    padding: 2rem;
  }
  .modal-wrapper {
    .modal-controls {
      position: absolute;
    }
    .modal-controls {
      right: 1rem;
    }
    .modal-controls {
      top: 1rem;
    }
    .modal-controls {
      height: 2rem;
    }
    .modal-controls {
      width: auto;
    }
    .modal-header {
      margin-bottom: 1.5rem;
    }
    .modal-body {
    }
  }
}

/*
  .modal.fade {
    @apply opacity-0 transition-opacity duration-[1s] delay-150;
  }
  */

.modal.show {
  z-index: 1002;
  display: block;
}

/*
  .modal.fade.show {
    @apply opacity-100;
  }
  */

/* Accordions
  --------------------------------------------- */

.accordion-container {
  border-radius: 0.625rem;
  --tw-bg-opacity: 1;
  background-color: rgb(225 230 234 / var(--tw-bg-opacity, 1));
}

.accordion-container a.accordion-toggle {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.accordion-container .accordion-header {
  flex-grow: 1;
  font-size: 1.125rem;
  font-weight: 600;
}

.accordion-container a.accordion-toggle svg {
  margin-inline-start: 1rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  flex: 0 0 1;
  transform: rotate(0deg);
}

.accordion-container.show a.accordion-toggle svg {
  transform: rotate(180deg);
}

.accordion-container .accordion-body {
  max-height: 0px;
  width: 100%;
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0;
  line-height: 150%;
  transition: height 0.15s ease-out, padding 0.15s ease-out, opacity 0.15s ease-out;
}

.accordion-container.show .accordion-body {
  max-height: 1000px;
  padding-top: 0px;
  padding-bottom: 1rem;
  opacity: 1;
}

/* Grid Container
  --------------------------------------------- */

.grid-container {
  display: flex;
  min-height: 200px;
  flex-wrap: wrap;
  align-content: space-between;
  align-items: stretch;
  gap: var(--cell-box-gap, 2.5rem);
  .cell-box {
    position: relative;
  }
  .cell-box {
    height: auto;
  }
  .cell-box {
    flex-shrink: 0;
  }
  .cell-box {
    flex-grow: 0;
  }
  .cell-box {
    --total-gutter: calc( var(--cell-box-gap, 2.5rem) * (var(--cell-box-row-count, 3) - 1) );
    width: calc( (100% / var(--cell-box-row-count, 3)) - ( var(--total-gutter) / var(--cell-box-row-count, 3) ) );
    .cell-box-image {
      overflow: hidden;
    }
    .cell-box-image {
      --tw-bg-opacity: 1;
      background-color: rgb(193 193 193 / var(--tw-bg-opacity, 1));
    }
    .cell-box-image {
      --tw-saturate: saturate(0);
      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);
    }
    .cell-box-image {
      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);
    }
    .cell-box-image {
      transition-property: filter,transform;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }
    .cell-box-image {
      transition-duration: 700ms,300ms;
    }
    .cell-box-image {
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      width: var(--cell-box-image-width, 100%);
      height: var(--cell-box-image-height, auto);
      aspect-ratio: var(--cell-box-image-ratio, 1);
      border-radius: var(--cell-box-image-radius, 0.5rem);
    }
    .cell-box-title {
      font-size: var(--cell-box-title-size, 1.25rem);
      font-weight: var(--cell-box-title-fw, 600);
      color: var(--cell-box-title-color, inherit);
      line-height: var(--cell-box-title-lh, 1rem);
      margin-top: var(--cell-box-title-mt, 1.5rem);
      margin-bottom: var(--cell-box-title-mb, 1rem);
      height: var(--cell-box-title-height, auto);
    }
    .cell-box-description {
      font-size: var(--cell-box-description-size, 1.25rem);
      font-weight: var(--cell-box-description-fw, 600);
      color: var(--cell-box-description-color, inherit);
      line-height: var(--cell-box-description-lh, 1rem);
      margin-top: var(--cell-box-description-mt, 0);
      margin-bottom: var(--cell-box-description-mb, 0);
    }
  }
  .cell-box:hover {
    .cell-box-image {
      --tw-scale-x: 1.02;
      --tw-scale-y: 1.02;
      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));
    }
    .cell-box-image {
      --tw-saturate: saturate(1);
      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);
    }
    .cell-box-image {
      transition-property: filter,transform;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }
    .cell-box-image {
      transition-duration: 700ms,300ms;
    }
  }
}

.grid-container.grid-container--loading {
  .cell-box * {
    visibility: hidden;
  }
  .cell-box * {
    pointer-events: none;
  }
  .cell-box:after {
    content: "";
  }
  .cell-box:after {
    position: absolute;
  }
  .cell-box:after {
    inset: 0px;
  }
  .cell-box:after {
    z-index: 10;
  }
  .cell-box:after {
    border-radius: 0.5rem;
  }
  .cell-box:after {
    --tw-bg-opacity: 1;
    background-color: rgb(193 193 193 / var(--tw-bg-opacity, 1));
  }
  .cell-box:after {
    animation-name: pulse-fade;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: var(--animation-delay, 0s);
    animation-duration: var(--animation-duration, 1s);
  }
}

.grid-container.disable-wrap {
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
}

.grid-container.disable-wrap::-webkit-scrollbar {
  display: none;
}

@media (hover: none) and (pointer: coarse) {
  .grid-container .cell-box .cell-box-image {
    --tw-saturate: saturate(1);
    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);
  }
}

/* Pagination
  --------------------------------------------- */

.pagination-container {
  display: flex;
  align-content: flex-start;
  align-items: center;
  gap: 1rem;
  .pagination-link {
    display: inline-flex;
  }
  .pagination-link {
    height: 40px;
  }
  .pagination-link {
    width: 40px;
  }
  .pagination-link {
    align-items: center;
  }
  .pagination-link {
    justify-content: center;
  }
  .pagination-link {
    border-radius: 100%;
  }
  .pagination-link {
    --tw-bg-opacity: 1;
    background-color: rgb(237 241 243 / var(--tw-bg-opacity, 1));
  }
  .pagination-link {
    --tw-text-opacity: 1;
    color: rgb(0 14 30 / var(--tw-text-opacity, 1));
  }
  .pagination-link {
    transition: color 150ms linear, background 150ms linear;
  }
  .pagination-link:hover {
    background-color: rgb(0 32 70 / 0.5);
  }
  .pagination-link:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  .pagination-link.active {
    --tw-bg-opacity: 1;
    background-color: rgb(0 32 70 / var(--tw-bg-opacity, 1));
  }
  .pagination-link.active {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.left-20 {
  left: 1.25rem;
}

.left-\[24\%\] {
  left: 24%;
}

.right-\[14\%\] {
  right: 14%;
}

.right-\[27\%\] {
  right: 27%;
}

.top-12 {
  top: 0.75rem;
}

.top-\[28\%\] {
  top: 28%;
}

.top-\[46\%\] {
  top: 46%;
}

.top-\[58\%\] {
  top: 58%;
}

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

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

.order-last {
  order: 9999;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-full {
  grid-column: 1 / -1;
}

.col-start-2 {
  grid-column-start: 2;
}

.row-span-3 {
  grid-row: span 3 / span 3;
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-start-2 {
  grid-row-start: 2;
}

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

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

.my-14 {
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

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

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

.mb-20 {
  margin-bottom: 1.25rem;
}

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

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

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

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

.mb-60 {
  margin-bottom: 3.75rem;
}

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

.mb-80 {
  margin-bottom: 5rem;
}

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

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

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

.ml-10 {
  margin-left: 0.625rem;
}

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

.mr-10 {
  margin-right: 0.625rem;
}

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

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

.mt-120 {
  margin-top: 7.5rem;
}

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

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

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

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

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

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

.mt-50 {
  margin-top: 3.125rem;
}

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

.mt-60 {
  margin-top: 3.75rem;
}

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

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

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

.box-content {
  box-sizing: content-box;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.flex {
  display: flex;
}

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

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-\[0\.58\] {
  aspect-ratio: 0.58;
}

.aspect-\[0\.87\] {
  aspect-ratio: 0.87;
}

.aspect-\[1\.11\] {
  aspect-ratio: 1.11;
}

.aspect-\[1\.34\] {
  aspect-ratio: 1.34;
}

.aspect-\[1\.38\] {
  aspect-ratio: 1.38;
}

.aspect-\[1\.4\] {
  aspect-ratio: 1.4;
}

.aspect-\[1\.63\] {
  aspect-ratio: 1.63;
}

.aspect-\[1918\/860\] {
  aspect-ratio: 1918/860;
}

.aspect-\[6\/7\] {
  aspect-ratio: 6/7;
}

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

.aspect-\[353\/215\] {
  aspect-ratio: 353/215;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-12 {
  height: 0.75rem;
}

.h-16 {
  height: 1rem;
}

.h-20 {
  height: 1.25rem;
}

.h-32 {
  height: 2rem;
}

.h-40 {
  height: 2.5rem;
}

.h-48 {
  height: 3rem;
}

.h-56 {
  height: 3.5rem;
}

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

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

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

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

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

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

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

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

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

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

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

.min-h-0 {
  min-height: 0px;
}

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

.w-0\.5 {
  width: 0.125rem;
}

.w-12 {
  width: 0.75rem;
}

.w-120 {
  width: 7.5rem;
}

.w-20 {
  width: 1.25rem;
}

.w-32 {
  width: 2rem;
}

.w-40 {
  width: 2.5rem;
}

.w-48 {
  width: 3rem;
}

.w-56 {
  width: 3.5rem;
}

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

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

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

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

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

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

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

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

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

.w-\[max-content\] {
  width: -moz-max-content;
  width: max-content;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.min-w-0 {
  min-width: 0px;
}

.min-w-full {
  min-width: 100%;
}

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

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

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

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

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

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

.max-w-\[64em\] {
  max-width: 64em;
}

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

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

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

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

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

.grow {
  flex-grow: 1;
}

.border-separate {
  border-collapse: separate;
}

.border-spacing-0 {
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-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));
}

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

.auto-rows-\[minmax\(0\2c max-content\)\] {
  grid-auto-rows: minmax(0,max-content);
}

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

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

.grid-cols-\[128fr_174fr\] {
  grid-template-columns: 128fr 174fr;
}

.grid-cols-\[20px_minmax\(0\2c 1fr\)\] {
  grid-template-columns: 20px minmax(0,1fr);
}

.grid-cols-\[8fr_2fr\] {
  grid-template-columns: 8fr 2fr;
}

.grid-cols-\[auto\] {
  grid-template-columns: auto;
}

.grid-cols-\[minmax\(0\2c 1fr\)_20px\] {
  grid-template-columns: minmax(0,1fr) 20px;
}

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

.grid-rows-\[auto\] {
  grid-template-rows: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-10 {
  gap: 0.625rem;
}

.gap-12 {
  gap: 0.75rem;
}

.gap-16 {
  gap: 1rem;
}

.gap-20 {
  gap: 1.25rem;
}

.gap-40 {
  gap: 2.5rem;
}

.gap-8 {
  gap: 0.5rem;
}

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

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

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

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

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

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

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

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

.gap-x-\[8px\] {
  -moz-column-gap: 8px;
       column-gap: 8px;
}

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

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

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

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

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

.gap-y-32 {
  row-gap: 2rem;
}

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

.gap-y-8 {
  row-gap: 0.5rem;
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

.scroll-smooth {
  scroll-behavior: smooth;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.break-words {
  overflow-wrap: break-word;
}

.rounded {
  border-radius: 0.625rem;
}

.rounded-\[0\.32rem\] {
  border-radius: 0.32rem;
}

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

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

.rounded-sm {
  border-radius: 0.375rem;
}

.rounded-bl {
  border-bottom-left-radius: 0.625rem;
}

.rounded-br {
  border-bottom-right-radius: 0.625rem;
}

.rounded-tl {
  border-top-left-radius: 0.625rem;
}

.rounded-tr {
  border-top-right-radius: 0.625rem;
}

.border {
  border-width: 1px;
}

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

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

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

.border-solid {
  border-style: solid;
}

.border-neutral-500 {
  --tw-border-opacity: 1;
  border-color: rgb(225 230 234 / var(--tw-border-opacity, 1));
}

.border-neutral-700 {
  --tw-border-opacity: 1;
  border-color: rgb(0 14 30 / var(--tw-border-opacity, 1));
}

.bg-accent {
  --tw-bg-opacity: 1;
  background-color: rgb(0 203 230 / var(--tw-bg-opacity, 1));
}

.bg-brand-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 203 230 / var(--tw-bg-opacity, 1));
}

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

.bg-icon {
  --tw-bg-opacity: 1;
  background-color: rgb(21 31 67 / var(--tw-bg-opacity, 1));
}

.bg-neutral-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(237 241 243 / var(--tw-bg-opacity, 1));
}

.bg-neutral-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(193 193 193 / var(--tw-bg-opacity, 1));
}

.bg-neutral-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(225 230 234 / var(--tw-bg-opacity, 1));
}

.bg-neutral-500\/50 {
  background-color: rgb(225 230 234 / 0.5);
}

.bg-neutral-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 70 / var(--tw-bg-opacity, 1));
}

.bg-neutral-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 14 30 / var(--tw-bg-opacity, 1));
}

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

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-neutral-700\/0 {
  --tw-gradient-from: rgb(0 14 30 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 14 30 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-neutral-700 {
  --tw-gradient-to: #000E1E var(--tw-gradient-to-position);
}

.bg-\[length\:100\%\] {
  background-size: 100%;
}

.bg-\[length\:115\%\] {
  background-size: 115%;
}

.bg-\[length\:130\%\] {
  background-size: 130%;
}

.bg-\[length\:140\%\] {
  background-size: 140%;
}

.bg-\[length\:150\%\] {
  background-size: 150%;
}

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

.bg-\[center\] {
  background-position: center;
}

.bg-\[center_20\%\] {
  background-position: center 20%;
}

.bg-\[center_25\%\] {
  background-position: center 25%;
}

.bg-\[center_35\%\] {
  background-position: center 35%;
}

.bg-\[center_65\%\] {
  background-position: center 65%;
}

.bg-\[center_70\%\] {
  background-position: center 70%;
}

.bg-\[left_center\] {
  background-position: left center;
}

.bg-\[left_top\] {
  background-position: left top;
}

.bg-\[right_center\] {
  background-position: right center;
}

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

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

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.object-\[cover\] {
  -o-object-position: cover;
     object-position: cover;
}

.p-10 {
  padding: 0.625rem;
}

.p-12 {
  padding: 0.75rem;
}

.p-20 {
  padding: 1.25rem;
}

.p-24 {
  padding: 1.5rem;
}

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

.p-\[11\.375px\] {
  padding: 11.375px;
}

.p-\[12\.25px\] {
  padding: 12.25px;
}

.p-\[12px\] {
  padding: 12px;
}

.p-\[4px\] {
  padding: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.py-24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

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

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

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

.py-60 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

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

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

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

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

.pb-40 {
  padding-bottom: 2.5rem;
}

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

.pb-60 {
  padding-bottom: 3.75rem;
}

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

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

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

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

.pt-100 {
  padding-top: 6.25rem;
}

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

.pt-16 {
  padding-top: 1rem;
}

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

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

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

.pt-60 {
  padding-top: 3.75rem;
}

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

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

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

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

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

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

.font-sans {
  font-family: "Open Sans", system-ui, sans-serif;
}

.text {
  font-size: 1rem;
}

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

.text-2xs {
  font-size: 0.625rem;
}

.text-3xl {
  font-size: 2rem;
}

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

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.leading-\[0\.9\] {
  line-height: 0.9;
}

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

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

.leading-normal {
  line-height: 1.4;
}

.leading-relaxed {
  line-height: 1.5;
}

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

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

.tracking-wider {
  letter-spacing: 0.05em;
}

.text-brand-500 {
  --tw-text-opacity: 1;
  color: rgb(0 203 230 / var(--tw-text-opacity, 1));
}

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

.text-neutral-100 {
  --tw-text-opacity: 1;
  color: rgb(175 171 171 / var(--tw-text-opacity, 1));
}

.text-neutral-200 {
  --tw-text-opacity: 1;
  color: rgb(166 173 180 / var(--tw-text-opacity, 1));
}

.text-neutral-600 {
  --tw-text-opacity: 1;
  color: rgb(0 32 70 / var(--tw-text-opacity, 1));
}

.text-neutral-700 {
  --tw-text-opacity: 1;
  color: rgb(0 14 30 / var(--tw-text-opacity, 1));
}

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

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

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

.opacity-0 {
  opacity: 0;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.shadow-\[0_0_12px_3px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-shadow: 0 0 12px 3px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 0 12px 3px 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-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline {
  outline-style: solid;
}

.saturate-0 {
  --tw-saturate: saturate(0);
  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);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, 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;
}

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

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

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

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

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

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

.layout {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1636px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 767px) {
  .layout {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1201px) {
  .layout {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
}

.spacer--a {
  padding-top: 5rem;
}

@media (min-width: 767px) {
  .spacer--a {
    padding-top: 6.25rem;
  }
}

@media (min-width: 1201px) {
  .spacer--a {
    padding-top: 7.5rem;
  }
}

.spacer--b {
  margin-top: 5rem;
  padding-bottom: 240px;
}

@media (min-width: 767px) {
  .spacer--b {
    margin-top: 6.25rem;
  }
}

@media (min-width: 1201px) {
  .spacer--b {
    margin-top: 7.5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1441px) {
  .spacer--b {
    padding-bottom: 7.5rem;
  }
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*
  .has-underline:after {
    @apply absolute left-0 w-full h-px bg-current;
    content: "";
    bottom: -7px;
    height: 1px;
    transform: scaleX(1);
    transform-origin: right;
  }
  */

.has-branding {
  --tw-text-opacity: 1;
  color: rgb(0 203 230 / var(--tw-text-opacity, 1));
}

.has-hover-transform {
  transition: transform 0.3s ease-in-out;
}

.has-hover-transform .gradient-overlay {
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: rgb(0 14 30 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 14 30 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #000E1E var(--tw-gradient-to-position);
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.has-hover-transform:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.has-hover-transform:hover .gradient-overlay {
  opacity: 0.5;
}

.has-hover-transform:hover .u-no-parent-scale {
  /* Calculated inverse of the parent's 1.05 scale */
  transform: scale(calc(1 / 1.05));
  transition: transform 0.3s ease-in-out;
  /* Keeps the effect smooth */
}

/* .origin-left {
    transform-origin: left center;
  }
  .origin-right {
    transform-origin: right center;
  } */

/* .swiper-slide:first-child {
    @apply origin-left;
  }
  .swiper-slide:last-child {
    @apply origin-right;
  } */

.\[grid-auto-rows\:auto_1fr_auto\] {
  grid-auto-rows: auto 1fr auto;
}

.\[grid-auto-rows\:auto_1fr_auto_auto\] {
  grid-auto-rows: auto 1fr auto auto;
}

.\[grid-auto-rows\:auto_auto_auto\] {
  grid-auto-rows: auto auto auto;
}

/* Optional reusable component */

@layer cards {
  .l-card {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .b-card-classic {
    padding: 1.5rem;
  }

  @media (min-width: 1201px) {
    .b-card-classic {
      padding: 2rem;
    }
  }

  .b-card-mission {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  @media (min-width: 1201px) {
    .b-card-mission {
      padding: 2rem;
    }
  }

  .card__build-your-team--theme {
    border-radius: 0.625rem;
    --tw-bg-opacity: 1;
    background-color: rgb(237 241 243 / var(--tw-bg-opacity, 1));
  }

  .icon__build-your-team {
    width: 3.5rem;
  }

  @media (min-width: 1201px) {
    .icon__build-your-team {
      height: 3.5rem;
    }
  }

  .t-card {
    border-radius: 0.625rem;
    --tw-bg-opacity: 1;
    background-color: rgb(237 241 243 / var(--tw-bg-opacity, 1));
  }
}

@layer flocss {
  .l-grid-1-2-3-3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  @media (min-width: 767px) {
    .l-grid-1-2-3-3 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 1201px) {
    .l-grid-1-2-3-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  .l-grid-1-3-3-3 {
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 767px) {
    .l-grid-1-3-3-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  .l-grid-1-2-4-4 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  @media (min-width: 767px) {
    .l-grid-1-2-4-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 1201px) {
    .l-grid-1-2-4-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  .b-card-spacious {
    padding: 2rem;
  }
}

/* Fade-In Animation
--------------------------------------------- */

.animate-fade-in {
  animation-name: fade-in;
  animation-delay: 0.25s;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0.15;
  }

  100% {
    opacity: 1;
  }
}

/* Slide-Up Entrance Animation
--------------------------------------------- */

.animate-slide-up {
  animation-name: slide-up;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 1s;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse-Fade Animation
--------------------------------------------- */

.animate-pulse-fade {
  animation-name: pulse-fade;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: var(--animation-delay, 0s);
  animation-duration: var(--animation-duration, 1s);
}

@keyframes pulse-fade {
  0% {
    --tw-bg-opacity: 1;
    background-color: rgb(193 193 193 / var(--tw-bg-opacity, 1));
  }

  50% {
    --tw-bg-opacity: 1;
    background-color: rgb(237 241 243 / var(--tw-bg-opacity, 1));
  }

  100% {
    --tw-bg-opacity: 1;
    background-color: rgb(193 193 193 / var(--tw-bg-opacity, 1));
  }
}

/* Misc
--------------------------------------------- */

main#primary {
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 0.25s;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.in-view {
  animation-name: slide-up;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 1s;
}

.hero {
  padding-top: 6.25rem;
}

.btn--outline {
  position: relative;
  border-radius: 0 0 8px 8px;
  z-index: 1;
}

/* the background bar */

.btn--outline::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 20px);
  height: 38px;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

/* Typography */

.h1--construction {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.32px;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  @media (min-width: 768px) {
    font-size: 3rem;

    letter-spacing: -0.96px;
  }
  @media (min-width: 1201px) {
    font-size: 3.5rem;

    line-height: 1.1;

    letter-spacing: -1.12px;
  }
  @media (min-width: 1441px) {
    font-size: 4rem;

    letter-spacing: -1.28px;
  }
}

.text-hero--construction {
  /* Subheader/S1/Mobile */
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 24px */
  text-align: center;
  @media (min-width: 1441px) {
    /* Subheader/S1/1920 */

    font-size: 18px;

    font-style: normal;
  }
}

/* In your CSS (or <style> tag) */

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--bg-image-sm);
}

@media (min-width: 768px) {
  .bg-image {
    background-image: var(--bg-image-md);
  }
}

@media (min-width: 1200px) {
  .bg-image {
    background-image: var(--bg-image-lg);
  }
}

@media (min-width: 1440px) {
  .bg-image {
    background-image: var(--bg-image-xl);
  }
}

/* In your CSS (or <style> tag) */

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--bg-img-sm);
}

@media (min-width: 768px) {
  .bg-img {
    background-image: var(--bg-img-md);
  }
}

@media (min-width: 1200px) {
  .bg-img {
    background-image: var(--bg-img-lg);
  }
}

@media (min-width: 1440px) {
  .bg-img {
    background-image: var(--bg-img-xl);
  }
}

.bg-img-alt {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --bg-img-src: var(--bg-img-sm);
  background-image: var(--bg-img-src);
}

@media (min-width: 768px) {
  .bg-img-alt {
    --bg-img-src: var(--bg-img-md);
  }
}

@media (min-width: 1200px) {
  .bg-img-alt {
    --bg-img-src: var(--bg-img-lg);
  }
}

@media (min-width: 1440px) {
  .bg-img-alt {
    --bg-img-src: var(--bg-img-xl);
  }
}

[style*="--logo-url"] {
  background-image: var(--logo-url);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

[style*="--logo-url"].first {
  background-position: left center;
}

[style*="--logo-url"].last {
  background-position: right center;
}

.img-brighten {
  filter: brightness(1.3);
}

/* Industries - Construction Experts Specific Styles */

#industries-hero {
  .graphic {
    aspect-ratio: 1.45;
    @media (min-width: 768px) {
      aspect-ratio: 2.05;
    }
    @media (min-width: 1201px) {
      aspect-ratio: 3.6;
    }
    @media (min-width: 1441px) {
      aspect-ratio: 3.03;
    }
  }
}

.btn--classic {
  max-width: 24em;
}

.industries-cards {
  article {
    row-gap: 1.25rem;
  }
  @layer cards {
    article {
      position: relative;
    }

    article {
      display: flex;
    }

    article {
      flex-direction: column;
    }
  }
  @layer cards {
    article {
      border-radius: 0.625rem;
    }

    article {
      --tw-bg-opacity: 1;
      background-color: rgb(237 241 243 / var(--tw-bg-opacity, 1));
    }
  }
  @layer flocss {
    article {
      padding: 2rem;
    }
  }
  @media (min-width: 1441px) {
    article {
      row-gap: 1.5rem;
    }
  }
  article {
    /*
    .icon {
      @apply w-48 h-48 lg:w-56 lg:h-56 xl:w-64 xl:h-64;
    }
    */
    .content {
      row-gap: 0.625rem;
    }
    @layer cards {
      .content {
        position: relative;
      }

      .content {
        display: flex;
      }

      .content {
        flex-direction: column;
      }
    }
    h3 {
      overflow-wrap: break-word;
    }
    h3 {
      font-size: 1.125rem;
    }
    h3 {
      font-weight: 600;
    }
    h3 {
      line-height: 1.2;
    }
    h3 {
      letter-spacing: -0.02em;
    }
    @media (min-width: 767px) {
      h3 {
        font-size: 1rem;
        line-height: 1.5rem;
      }
    }
    @media (min-width: 1201px) {
      h3 {
        font-size: 1.125rem;
      }
    }
    @media (min-width: 1441px) {
      h3 {
        font-size: 1.25rem;
      }
    }
    h3 {
      --tw-text-opacity: 1;
      color: rgb(0 14 30 / var(--tw-text-opacity, 1));
    }
    p {
      font-size: 1rem;
      line-height: 1.5rem;
    }
    p {
      --tw-text-opacity: 1;
      color: rgb(0 14 30 / var(--tw-text-opacity, 1));
    }
  }
}

#what-we-can-do {
  .tab-panel[hidden] {
    display: none;
  }
  @media (min-width: 1201px) {
    display: grid;

    grid-template-columns: 387px 1fr 7fr;

    align-items: center;
  }
  @media (min-width: 1441px) {
    grid-template-columns: 534px 1fr 7fr;
  }
  header {
    @media (min-width: 1201px) {
      grid-column: span 3;
    }
  }
  nav {
    text-align: center;
  }
  nav {
    @media (min-width: 1201px) {
      grid-column: span 3;
    }
  }
  /* Due to the fixed width applied to the buttons, mobile breakpoint is manually set to 830px to prevent overflow */
  ul.tabs {
    margin-left: auto;
    margin-right: auto;
  }
  ul.tabs {
    margin-top: 2rem;
  }
  ul.tabs {
    margin-bottom: 3rem;
  }
  ul.tabs {
    display: inline-flex;
  }
  ul.tabs {
    width: 100%;
  }
  ul.tabs {
    flex-direction: column;
  }
  ul.tabs {
    align-items: center;
  }
  ul.tabs {
    border-radius: 0.625rem;
  }
  ul.tabs {
    --tw-bg-opacity: 1;
    background-color: rgb(237 241 243 / var(--tw-bg-opacity, 1));
  }
  ul.tabs {
    padding: 0.25rem;
  }
  ul.tabs {
    @media (min-width: 830px) {
      width: auto;

      flex-direction: row;

      justify-content: center;
    }
    li {
      display: inline-block;
    }
    li {
      width: 100%;
    }
    li {
      @media (min-width: 830px) {
        width: 240px;

        flex-grow: 1;

        flex-shrink: 1;
      }
      @media (min-width: 1201px) {
        width: 260px;
      }
      button {
        display: inline-block;
      }
      button {
        width: 100%;
      }
      button {
        white-space: nowrap;
      }
      button {
        border-radius: 0.375rem;
      }
      button {
        padding-top: 1rem;
        padding-bottom: 1rem;
      }
      button {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
      button {
        text-align: center;
      }
      button {
        font-weight: 600;
      }
      button {
        text-transform: capitalize;
      }
      button.is-active {
        --tw-bg-opacity: 1;
        background-color: rgb(0 32 70 / var(--tw-bg-opacity, 1));
      }
      button.is-active {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
      }
      button.is-active {
        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: 150ms;
      }
      button.is-active {
        transition-duration: 500ms;
      }
    }
  }
  .image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--bg-img-sm);
    aspect-ratio: 0.66;
    @media (min-width: 768px) {
      background-image: var(--bg-img-md);

      aspect-ratio: 1.37;
    }
    @media (min-width: 1201px) {
      background-image: var(--bg-img-lg);

      aspect-ratio: 0.71;
    }
    @media (min-width: 1441px) {
      background-image: var(--bg-img-xl);

      aspect-ratio: 0.85;
    }
  }
  .image {
    border-radius: 0.625rem;
  }
  .tab-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    @media (min-width: 1201px) {
      grid-column-start: 3;

      padding-top: 0;

      align-items: flex-start;
    }
    ul {
      display: flex;
      flex-direction: column;
      row-gap: 24px;
      padding-bottom: 40px;
      @media (min-width: 1441px) {
        row-gap: 32px;
      }
      li {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 10px;
        align-items: center;
        img {
          width: 20px;
          height: 20px;
        }
        p:last-child {
          width: 100%;
        }
        h3 {
          font-size: 16px;
          @media (min-width: 1201px) {
            font-size: 18px;
          }
          @media (min-width: 1441px) {
            font-size: 20px;
          }
        }
      }
    }
    ul.list-tab-book {
      display: grid;
      grid-template-columns: 1fr 1fr;
      -moz-column-gap: 40px;
           column-gap: 40px;
      li {
        display: grid;
        grid-template-columns: 20px 1fr;
      }
      h3 {
        font-size: 16px;
        white-space: normal;
      }
    }
  }
}

.site-header nav {
  height: 64px;
  @media (min-width: 1201px) {
    height: 96px;
  }
}

.switcher {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 767px) {
  .switcher {
    display: grid;
  }
}

.location-headquarters-group {
  cursor: pointer;
  pointer-events: all;
  .location-headquarters-img {
    display: none;
  }
}

.location-headquarters-group:hover,
.location-headquarters-group:focus {
  z-index: 50;
  .location-headquarters-img {
    display: block;
  }
}

@media (max-width: 766px) {
  .location-headquarters-group {
    .location-headquarters-city {
      display: none;
    }
  }

  .location-headquarters-group:hover,
  .location-headquarters-group:focus {
    .location-headquarters-city {
      display: block;
    }
  }
}

.case-study-content,
.blog-content {
  > h2 {
    margin-bottom: 1rem;
  }
  > h2 {
    font-size: 2rem;
  }
  > h2 {
    font-weight: 600;
  }
  > p {
    margin-bottom: 1.5rem;
  }
  ul {
    margin-bottom: 1.5rem;
  }
  ul {
    > li {
      margin-left: 1rem;
    }
    > li {
      margin-bottom: 1rem;
    }
  }
}

@media (max-width: 766px) {
  .case-study-content,
  .blog-content {
    > h2 {
      font-size: 1.5rem;
    }
  }
}

#global_map {
  position: absolute;
  inset: 0px;
  height: auto;
  width: 100%;
  opacity: 0.8;
}

#global_locations {
  position: relative;
}

#global_locations:after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
        to bottom,
        rgba(241, 243, 245, 1) 0%,
        rgba(241, 243, 245, 0) 30%,
        rgba(241, 243, 245, 0) 70%,
        rgba(241, 243, 245, 1) 100%
    );
}

#quick_stats_container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
  > div {
    flex-shrink: 1;
  }
  > div {
    flex-grow: 1;
  }
  > div {
    border-radius: 0.625rem;
  }
  > div {
    --tw-bg-opacity: 1;
    background-color: rgb(225 230 234 / var(--tw-bg-opacity, 1));
  }
  > div {
    padding: 1rem;
  }
  > div {
    text-align: center;
  }
  > div {
    > h3 {
      margin-bottom: 0.5rem;
    }
    > h3 {
      font-size: 1.125rem;
    }
    > h3 {
      font-weight: 600;
    }
    > p {
      font-size: 1rem;
    }
    > p {
      font-weight: 400;
    }
  }
}

#software_audit_modal {
  .modal-wrapper {
    min-width: calc(100vw - 64px);
  }
  .modal-wrapper {
    max-width: 100%;
  }
  .modal-wrapper {
    border-radius: 0.625rem;
  }
  .modal-wrapper {
    padding: 1.25rem;
  }
  @media (min-width: 767px) {
    .modal-wrapper {
      min-width: 0px;
    }
  }
  @media (min-width: 767px) {
    .modal-wrapper {
      border-radius: 0px;
    }
  }
  @media (min-width: 767px) {
    .modal-wrapper {
      padding: 2rem;
    }
  }
  .modal-wrapper {
    .modal-header {
      h4 {
        margin-bottom: 0.375rem;
      }
      h4 {
        font-size: 0.75rem;
      }
      h4 {
        font-weight: 700;
      }
      h4 {
        text-transform: uppercase;
      }
      h4 {
        --tw-text-opacity: 1;
        color: rgb(0 203 230 / var(--tw-text-opacity, 1));
      }
      h2 {
        font-size: 1.25rem;
      }
      h2 {
        font-weight: 600;
      }
      h2 {
        line-height: 1.4;
      }
      h2 {
        line-height: 1.25;
      }
      h2 {
        --tw-text-opacity: 1;
        color: rgb(0 14 30 / var(--tw-text-opacity, 1));
      }
      @media (min-width: 767px) {
        h2 {
          font-size: 1.5rem;
        }
      }
      @media (min-width: 1201px) {
        h2 {
          font-size: 1.75rem;
        }
      }
    }
    .modal-body {
      display: grid;
    }
    .modal-body {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    @media (min-width: 767px) {
      .modal-body {
        grid-template-columns: minmax(380px,2fr) minmax(235px,1fr);
      }
    }
    .friction-point-list {
      > li {
        display: flex;
      }
      > li {
        align-items: flex-start;
      }
      > li {
        justify-content: flex-start;
      }
      > li {
        -moz-column-gap: 0.375rem;
             column-gap: 0.375rem;
      }
      > li {
        font-size: 0.875rem;
      }
      > li {
        line-height: 1rem;
      }
      @media (min-width: 767px) {
        > li {
          font-size: 1rem;
        }
      }
      @media (min-width: 767px) {
        > li {
          line-height: 1.2;
        }
      }
      > li {
        > span {
          display: inline-flex;
        }
        > span {
          height: 1rem;
        }
        > span {
          width: 1rem;
        }
        > span {
          border-radius: 0.625rem;
        }
        > span {
          --tw-bg-opacity: 1;
          background-color: rgb(0 32 70 / var(--tw-bg-opacity, 1));
        }
        > span {
          padding-left: 4px;
          padding-right: 4px;
        }
        > span {
          padding-top: 5px;
          padding-bottom: 5px;
        }
        > span {
          font-size: 0.875rem;
        }
        @media (min-width: 767px) {
          > span {
            height: 1.25rem;
          }
        }
        @media (min-width: 767px) {
          > span {
            width: 1.25rem;
          }
        }
        > span {
          > i.icon {
            height: auto;
          }
          > i.icon {
            width: 100%;
          }
          > i.icon {
            --tw-text-opacity: 1;
            color: rgb(255 255 255 / var(--tw-text-opacity, 1));
          }
        }
      }
    }
  }
}

#hero_404 {
  position: relative;
  margin-top: 4rem;
  height: 60vh;
  overflow: hidden;
  padding-top: 3rem;
}

@media (min-width: 767px) {
  #hero_404 {
    padding-top: 4rem;
  }
}

@media (min-width: 1201px) {
  #hero_404 {
    padding-top: 1.75rem;
  }
}

@media (min-width: 1441px) {
  #hero_404 {
    padding-top: 0px;
  }
}

#hero_404::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  display: block;
  aspect-ratio: 8/3;
  height: 223px;
  width: auto;
  --tw-translate-x: -50%;
  --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));
  --tw-bg-opacity: 1;
  background-color: rgb(245 249 249 / var(--tw-bg-opacity, 1));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 767px) {
  #hero_404::before {
    height: 260px;
  }
}

@media (min-width: 1201px) {
  #hero_404::before {
    height: 374px;
  }
}

@media (min-width: 1441px) {
  #hero_404::before {
    height: 440px;
  }
}

#hero_404::before {
  /*
          md:h-[43%]
          lg:h-[78%]
          xl:h-[55%];
          */
  content: "";
  -webkit-mask: url(../images/optimal_vector.svg) center / contain no-repeat;
  mask: url(../images/optimal_vector.svg) center / contain no-repeat;
}

@media (min-width: 767px) {
  #quick_stats_container {
    flex-direction: row;
    align-items: stretch;
    > div {
      display: flex;
    }
    > div {
      flex-direction: column;
    }
    > div {
      align-items: stretch;
    }
    > div {
      justify-content: center;
    }
    > div {
      width: calc(100% - (3rem / 4));
    }
  }
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:-bottom-\[6px\]::after {
  content: var(--tw-content);
  bottom: -6px;
}

.after\:left-0::after {
  content: var(--tw-content);
  left: 0px;
}

.after\:h-px::after {
  content: var(--tw-content);
  height: 1px;
}

.after\:w-full::after {
  content: var(--tw-content);
  width: 100%;
}

.after\:bg-brand-500::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(0 203 230 / var(--tw-bg-opacity, 1));
}

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

.after\:duration-300::after {
  content: var(--tw-content);
  transition-duration: 300ms;
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.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));
}

.group:hover .group-hover\:opacity-50 {
  opacity: 0.5;
}

.group:hover .group-hover\:saturate-150 {
  --tw-saturate: saturate(1.5);
  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);
}

.group.active .group-\[\.active\]\:-translate-y-\[6px\] {
  --tw-translate-y: -6px;
  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.active .group-\[\.active\]\:translate-y-\[6px\] {
  --tw-translate-y: 6px;
  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.active .group-\[\.active\]\:-rotate-45 {
  --tw-rotate: -45deg;
  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.active .group-\[\.active\]\:rotate-45 {
  --tw-rotate: 45deg;
  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.active .group-\[\.active\]\:opacity-0 {
  opacity: 0;
}

@media not all and (min-width: 640px) {
  .max-sm\:bg-\[var\(--bg-img-sm\)\] {
    background-color: var(--bg-img-sm);
  }
}

@media (min-width: 640px) {
  .sm\:-mx-6 {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

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

@media (min-width: 767px) {
  .md\:order-2 {
    order: 2;
  }

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

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-start-1 {
    grid-column-start: 1;
  }

  .md\:col-start-2 {
    grid-column-start: 2;
  }

  .md\:col-start-3 {
    grid-column-start: 3;
  }

  .md\:row-span-2 {
    grid-row: span 2 / span 2;
  }

  .md\:row-span-3 {
    grid-row: span 3 / span 3;
  }

  .md\:row-start-1 {
    grid-row-start: 1;
  }

  .md\:row-start-2 {
    grid-row-start: 2;
  }

  .md\:row-end-2 {
    grid-row-end: 2;
  }

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

  .md\:-mt-24 {
    margin-top: -1.5rem;
  }

  .md\:-mt-48 {
    margin-top: -3rem;
  }

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

  .md\:mb-10 {
    margin-bottom: 0.625rem;
  }

  .md\:mb-100 {
    margin-bottom: 6.25rem;
  }

  .md\:mb-16 {
    margin-bottom: 1rem;
  }

  .md\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .md\:mb-24 {
    margin-bottom: 1.5rem;
  }

  .md\:mb-32 {
    margin-bottom: 2rem;
  }

  .md\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .md\:mb-60 {
    margin-bottom: 3.75rem;
  }

  .md\:mb-\[-1\.25rem\] {
    margin-bottom: -1.25rem;
  }

  .md\:mr-40 {
    margin-right: 2.5rem;
  }

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

  .md\:mt-100 {
    margin-top: 6.25rem;
  }

  .md\:mt-16 {
    margin-top: 1rem;
  }

  .md\:mt-32 {
    margin-top: 2rem;
  }

  .md\:mt-68 {
    margin-top: 4.25rem;
  }

  .md\:mt-8 {
    margin-top: 0.5rem;
  }

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

  .md\:block {
    display: block;
  }

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

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:aspect-\[0\.85\] {
    aspect-ratio: 0.85;
  }

  .md\:aspect-\[0\.92\] {
    aspect-ratio: 0.92;
  }

  .md\:aspect-\[1\.17\] {
    aspect-ratio: 1.17;
  }

  .md\:aspect-\[1\.91\] {
    aspect-ratio: 1.91;
  }

  .md\:aspect-\[2\.1\] {
    aspect-ratio: 2.1;
  }

  .md\:aspect-\[3\] {
    aspect-ratio: 3;
  }

  .md\:aspect-auto {
    aspect-ratio: auto;
  }

  .md\:aspect-\[359\/480\] {
    aspect-ratio: 359/480;
  }

  .md\:aspect-\[359\/422\] {
    aspect-ratio: 359/422;
  }

  .md\:h-48 {
    height: 3rem;
  }

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

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

  .md\:max-h-\[48px\] {
    max-height: 48px;
  }

  .md\:w-48 {
    width: 3rem;
  }

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

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

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

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

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

  .md\:-translate-y-\[20\%\] {
    --tw-translate-y: -20%;
    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\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .md\:grid-cols-\[1fr_0\.8fr_0\.8fr\] {
    grid-template-columns: 1fr 0.8fr 0.8fr;
  }

  .md\:grid-cols-\[1fr_minmax\(0\2c 485px\)\] {
    grid-template-columns: 1fr minmax(0,485px);
  }

  .md\:grid-cols-\[3fr_40px_4fr\] {
    grid-template-columns: 3fr 40px 4fr;
  }

  .md\:grid-cols-\[485px_auto_165px\] {
    grid-template-columns: 485px auto 165px;
  }

  .md\:grid-cols-\[4fr_40px_3fr\] {
    grid-template-columns: 4fr 40px 3fr;
  }

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

  .md\:grid-rows-\[auto_auto\] {
    grid-template-rows: auto auto;
  }

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

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

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

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

  .md\:items-start {
    align-items: flex-start;
  }

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

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

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

  .md\:gap-16 {
    gap: 1rem;
  }

  .md\:gap-20 {
    gap: 1.25rem;
  }

  .md\:gap-24 {
    gap: 1.5rem;
  }

  .md\:gap-x-16 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .md\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .md\:gap-x-40 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .md\:gap-y-16 {
    row-gap: 1rem;
  }

  .md\:gap-y-32 {
    row-gap: 2rem;
  }

  .md\:self-end {
    align-self: flex-end;
  }

  .md\:border-l-0 {
    border-left-width: 0px;
  }

  .md\:bg-\[var\(--bg-img-md\)\] {
    background-color: var(--bg-img-md);
  }

  .md\:bg-\[length\:145\%\] {
    background-size: 145%;
  }

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

  .md\:bg-\[center_20\%\] {
    background-position: center 20%;
  }

  .md\:bg-\[center_40\%\] {
    background-position: center 40%;
  }

  .md\:bg-\[center_70\%\] {
    background-position: center 70%;
  }

  .md\:p-24 {
    padding: 1.5rem;
  }

  .md\:p-32 {
    padding: 2rem;
  }

  .md\:px-120 {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }

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

  .md\:px-60 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .md\:py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .md\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:py-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .md\:py-80 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .md\:pb-40 {
    padding-bottom: 2.5rem;
  }

  .md\:pb-60 {
    padding-bottom: 3.75rem;
  }

  .md\:pb-80 {
    padding-bottom: 5rem;
  }

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

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

  .md\:pt-20 {
    padding-top: 1.25rem;
  }

  .md\:pt-36 {
    padding-top: 2.25rem;
  }

  .md\:pt-64 {
    padding-top: 4rem;
  }

  .md\:pt-72 {
    padding-top: 4.5rem;
  }

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

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

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

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

  .md\:text {
    font-size: 1rem;
  }

  .md\:text-3xl {
    font-size: 2rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

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

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

  .md\:text-lg {
    font-size: 1.125rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }
}

@media (min-width: 1201px) {
  .lg\:order-1 {
    order: 1;
  }

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

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

  .lg\:order-4 {
    order: 4;
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-start-2 {
    grid-column-start: 2;
  }

  .lg\:col-start-3 {
    grid-column-start: 3;
  }

  .lg\:row-span-2 {
    grid-row: span 2 / span 2;
  }

  .lg\:row-span-4 {
    grid-row: span 4 / span 4;
  }

  .lg\:row-span-full {
    grid-row: 1 / -1;
  }

  .lg\:row-start-1 {
    grid-row-start: 1;
  }

  .lg\:row-start-2 {
    grid-row-start: 2;
  }

  .lg\:row-start-3 {
    grid-row-start: 3;
  }

  .lg\:row-end-3 {
    grid-row-end: 3;
  }

  .lg\:row-end-4 {
    grid-row-end: 4;
  }

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

  .lg\:-mt-\[30px\] {
    margin-top: -30px;
  }

  .lg\:-mt-\[90px\] {
    margin-top: -90px;
  }

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

  .lg\:mb-120 {
    margin-bottom: 7.5rem;
  }

  .lg\:mb-16 {
    margin-bottom: 1rem;
  }

  .lg\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .lg\:mb-24 {
    margin-bottom: 1.5rem;
  }

  .lg\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .lg\:mb-48 {
    margin-bottom: 3rem;
  }

  .lg\:mb-\[-2\.5rem\] {
    margin-bottom: -2.5rem;
  }

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

  .lg\:mr-40 {
    margin-right: 2.5rem;
  }

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

  .lg\:mt-120 {
    margin-top: 7.5rem;
  }

  .lg\:mt-140 {
    margin-top: 8.75rem;
  }

  .lg\:mt-16 {
    margin-top: 1rem;
  }

  .lg\:mt-24 {
    margin-top: 1.5rem;
  }

  .lg\:mt-4 {
    margin-top: 0.25rem;
  }

  .lg\:mt-40 {
    margin-top: 2.5rem;
  }

  .lg\:mt-48 {
    margin-top: 3rem;
  }

  .lg\:mt-8 {
    margin-top: 0.5rem;
  }

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

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:aspect-\[0\.65\] {
    aspect-ratio: 0.65;
  }

  .lg\:aspect-\[0\.84\] {
    aspect-ratio: 0.84;
  }

  .lg\:aspect-\[0\.87\] {
    aspect-ratio: 0.87;
  }

  .lg\:aspect-\[1\.63\] {
    aspect-ratio: 1.63;
  }

  .lg\:aspect-\[2\.04\] {
    aspect-ratio: 2.04;
  }

  .lg\:aspect-\[2\] {
    aspect-ratio: 2;
  }

  .lg\:aspect-auto {
    aspect-ratio: auto;
  }

  .lg\:aspect-\[488\/377\] {
    aspect-ratio: 488/377;
  }

  .lg\:h-56 {
    height: 3.5rem;
  }

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

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

  .lg\:w-56 {
    width: 3.5rem;
  }

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

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

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

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

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

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

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

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

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

  .lg\:grid-cols-\[0\.7fr_1fr_0\.7fr\] {
    grid-template-columns: 0.7fr 1fr 0.7fr;
  }

  .lg\:grid-cols-\[1fr_1fr_0\.8fr_0\.8fr_0\.57fr\] {
    grid-template-columns: 1fr 1fr 0.8fr 0.8fr 0.57fr;
  }

  .lg\:grid-cols-\[1fr_minmax\(0\2c 677px\)\] {
    grid-template-columns: 1fr minmax(0,677px);
  }

  .lg\:grid-cols-\[4\.8fr_5\.6fr\] {
    grid-template-columns: 4.8fr 5.6fr;
  }

  .lg\:grid-cols-\[4fr_7fr\] {
    grid-template-columns: 4fr 7fr;
  }

  .lg\:grid-cols-\[4fr_minmax\(40px\2c 1fr\)_7fr\] {
    grid-template-columns: 4fr minmax(40px,1fr) 7fr;
  }

  .lg\:grid-cols-\[7fr_1fr_4fr\] {
    grid-template-columns: 7fr 1fr 4fr;
  }

  .lg\:grid-cols-\[7fr_4fr\] {
    grid-template-columns: 7fr 4fr;
  }

  .lg\:grid-cols-\[820px_auto_188px\] {
    grid-template-columns: 820px auto 188px;
  }

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

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

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

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

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

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

  .lg\:items-stretch {
    align-items: stretch;
  }

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

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

  .lg\:justify-items-start {
    justify-items: start;
  }

  .lg\:gap-10 {
    gap: 0.625rem;
  }

  .lg\:gap-20 {
    gap: 1.25rem;
  }

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

  .lg\:gap-32 {
    gap: 2rem;
  }

  .lg\:gap-40 {
    gap: 2.5rem;
  }

  .lg\:gap-x-20 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .lg\:gap-x-40 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .lg\:gap-x-60 {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
  }

  .lg\:gap-x-\[120px\] {
    -moz-column-gap: 120px;
         column-gap: 120px;
  }

  .lg\:gap-y-20 {
    row-gap: 1.25rem;
  }

  .lg\:gap-y-24 {
    row-gap: 1.5rem;
  }

  .lg\:gap-y-32 {
    row-gap: 2rem;
  }

  .lg\:gap-y-40 {
    row-gap: 2.5rem;
  }

  .lg\:justify-self-start {
    justify-self: start;
  }

  .lg\:justify-self-end {
    justify-self: end;
  }

  .lg\:rounded {
    border-radius: 0.625rem;
  }

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

  .lg\:border-l-0 {
    border-left-width: 0px;
  }

  .lg\:bg-\[var\(--bg-img-lg\)\] {
    background-color: var(--bg-img-lg);
  }

  .lg\:bg-\[length\:120\%\] {
    background-size: 120%;
  }

  .lg\:bg-\[length\:cover\] {
    background-size: cover;
  }

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

  .lg\:bg-\[0\%_20\%\] {
    background-position: 0% 20%;
  }

  .lg\:bg-\[60\%_0\] {
    background-position: 60% 0;
  }

  .lg\:bg-\[center_-135px\] {
    background-position: center -135px;
  }

  .lg\:bg-\[center_-25px\] {
    background-position: center -25px;
  }

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

  .lg\:p-32 {
    padding: 2rem;
  }

  .lg\:px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:px-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:px-80 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .lg\:py-120 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  .lg\:py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:py-64 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .lg\:pb-32 {
    padding-bottom: 2rem;
  }

  .lg\:pb-48 {
    padding-bottom: 3rem;
  }

  .lg\:pb-64 {
    padding-bottom: 4rem;
  }

  .lg\:pb-80 {
    padding-bottom: 5rem;
  }

  .lg\:pl-\[auto\] {
    padding-left: auto;
  }

  .lg\:pr-80 {
    padding-right: 5rem;
  }

  .lg\:pt-120 {
    padding-top: 7.5rem;
  }

  .lg\:pt-24 {
    padding-top: 1.5rem;
  }

  .lg\:pt-28 {
    padding-top: 1.75rem;
  }

  .lg\:pt-32 {
    padding-top: 2rem;
  }

  .lg\:pt-48 {
    padding-top: 3rem;
  }

  .lg\:pt-64 {
    padding-top: 4rem;
  }

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

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

  .lg\:text-2xl {
    font-size: 1.5rem;
  }

  .lg\:text-3xl {
    font-size: 2rem;
  }

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

  .lg\:text-6xl {
    font-size: 4rem;
  }

  .lg\:text-\[3\.5rem\] {
    font-size: 3.5rem;
  }

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

  .lg\:text-lg {
    font-size: 1.125rem;
  }

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

@media (min-width: 1441px) {
  .xl\:-mt-\[120px\] {
    margin-top: -120px;
  }

  .xl\:-mt-\[160px\] {
    margin-top: -160px;
  }

  .xl\:mb-120 {
    margin-bottom: 7.5rem;
  }

  .xl\:mb-16 {
    margin-bottom: 1rem;
  }

  .xl\:mb-20 {
    margin-bottom: 1.25rem;
  }

  .xl\:mb-22 {
    margin-bottom: 1.375rem;
  }

  .xl\:mb-40 {
    margin-bottom: 2.5rem;
  }

  .xl\:mb-48 {
    margin-bottom: 3rem;
  }

  .xl\:mb-60 {
    margin-bottom: 3.75rem;
  }

  .xl\:mb-\[-3\.75rem\] {
    margin-bottom: -3.75rem;
  }

  .xl\:mt-120 {
    margin-top: 7.5rem;
  }

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

  .xl\:mt-56 {
    margin-top: 3.5rem;
  }

  .xl\:mt-77 {
    margin-top: 4.8125;
  }

  .xl\:mt-8 {
    margin-top: 0.5rem;
  }

  .xl\:block {
    display: block;
  }

  .xl\:aspect-\[0\.85\] {
    aspect-ratio: 0.85;
  }

  .xl\:aspect-\[1\.74\] {
    aspect-ratio: 1.74;
  }

  .xl\:aspect-\[535\/416\] {
    aspect-ratio: 535/416;
  }

  .xl\:h-64 {
    height: 4rem;
  }

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

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

  .xl\:w-64 {
    width: 4rem;
  }

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

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

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

  .xl\:grid-cols-\[0\.7fr_1fr_0\.7fr\] {
    grid-template-columns: 0.7fr 1fr 0.7fr;
  }

  .xl\:grid-cols-\[5\.3fr_7\.5fr\] {
    grid-template-columns: 5.3fr 7.5fr;
  }

  .xl\:grid-cols-\[5fr_2fr_700px\] {
    grid-template-columns: 5fr 2fr 700px;
  }

  .xl\:grid-cols-\[700px_2fr_5fr\] {
    grid-template-columns: 700px 2fr 5fr;
  }

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

  .xl\:gap-24 {
    gap: 1.5rem;
  }

  .xl\:gap-32 {
    gap: 2rem;
  }

  .xl\:gap-40 {
    gap: 2.5rem;
  }

  .xl\:gap-56 {
    gap: 3.5rem;
  }

  .xl\:gap-x-100 {
    -moz-column-gap: 6.25rem;
         column-gap: 6.25rem;
  }

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

  .xl\:gap-x-60 {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
  }

  .xl\:gap-y-12 {
    row-gap: 0.75rem;
  }

  .xl\:gap-y-20 {
    row-gap: 1.25rem;
  }

  .xl\:gap-y-24 {
    row-gap: 1.5rem;
  }

  .xl\:gap-y-32 {
    row-gap: 2rem;
  }

  .xl\:gap-y-40 {
    row-gap: 2.5rem;
  }

  .xl\:bg-\[var\(--bg-img-xl\)\] {
    background-color: var(--bg-img-xl);
  }

  .xl\:bg-\[length\:100\%\] {
    background-size: 100%;
  }

  .xl\:bg-\[length\:185\%\] {
    background-size: 185%;
  }

  .xl\:bg-\[center_-100px\] {
    background-position: center -100px;
  }

  .xl\:bg-\[center_-170px\] {
    background-position: center -170px;
  }

  .xl\:bg-\[center_top\] {
    background-position: center top;
  }

  .xl\:p-14 {
    padding: 0.875rem;
  }

  .xl\:p-\[12px\] {
    padding: 12px;
  }

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

  .xl\:p-\[14px\] {
    padding: 14px;
  }

  .xl\:p-\[16\.25px\] {
    padding: 16.25px;
  }

  .xl\:px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .xl\:px-48 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:py-120 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

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

  .xl\:py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:py-48 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:pb-120 {
    padding-bottom: 7.5rem;
  }

  .xl\:pb-56 {
    padding-bottom: 3.5rem;
  }

  .xl\:pb-60 {
    padding-bottom: 3.75rem;
  }

  .xl\:pt-100 {
    padding-top: 6.25rem;
  }

  .xl\:pt-120 {
    padding-top: 7.5rem;
  }

  .xl\:pt-200 {
    padding-top: 12.5rem;
  }

  .xl\:pt-24 {
    padding-top: 1.5rem;
  }

  .xl\:pt-40 {
    padding-top: 2.5rem;
  }

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

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

  .xl\:text-6xl {
    font-size: 4rem;
  }

  .xl\:text-7xl {
    font-size: 5rem;
  }

  .xl\:text-lg {
    font-size: 1.125rem;
  }

  .xl\:text-xl {
    font-size: 1.25rem;
  }
}

.\[\&\>\*\]\:min-w-0>* {
  min-width: 0px;
}

.\[\&\>tr\>\*\]\:border>tr>* {
  border-width: 1px;
}

.\[\&\>tr\>\*\]\:border-neutral-500>tr>* {
  --tw-border-opacity: 1;
  border-color: rgb(225 230 234 / var(--tw-border-opacity, 1));
}