/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-white: #fff;
    --spacing: 0.25rem;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --animate-spin: spin 1s linear infinite;
    --animate-bounce: bounce 1s infinite;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --font-bebas: "Bebas Neue Pro", sans-serif;
    --color-sep: #bcbcbc;
    --color-dark: #121212;
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .pointer-events-none {
    pointer-events: none;
  }
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .sticky {
    position: sticky;
  }
  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .top-0 {
    top: calc(var(--spacing) * 0);
  }
  .right-0 {
    right: calc(var(--spacing) * 0);
  }
  .bottom-0 {
    bottom: calc(var(--spacing) * 0);
  }
  .left-0 {
    left: calc(var(--spacing) * 0);
  }
  .z-1 {
    z-index: 1;
  }
  .z-10 {
    z-index: 10;
  }
  .container {
    width: 100%;
    @media (width >= 340px) {
      max-width: 340px;
    }
    @media (width >= 375px) {
      max-width: 375px;
    }
    @media (width >= 500px) {
      max-width: 500px;
    }
    @media (width >= 1024px) {
      max-width: 1024px;
    }
    @media (width >= 1280px) {
      max-width: 1280px;
    }
    @media (width >= 1440px) {
      max-width: 1440px;
    }
  }
  .mx-auto {
    margin-inline: auto;
  }
  .mt-\[24px\] {
    margin-top: 24px;
  }
  .mt-\[60px\] {
    margin-top: 60px;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .aspect-\[4\/4\] {
    aspect-ratio: 4/4;
  }
  .aspect-auto {
    aspect-ratio: auto;
  }
  .size-full {
    width: 100%;
    height: 100%;
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .h-\[50px\] {
    height: 50px;
  }
  .h-\[756px\] {
    height: 756px;
  }
  .w-10 {
    width: calc(var(--spacing) * 10);
  }
  .w-\[50px\] {
    width: 50px;
  }
  .w-\[300px\] {
    width: 300px;
  }
  .w-full {
    width: 100%;
  }
  .flex-1 {
    flex: 1;
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .animate-bounce {
    animation: var(--animate-bounce);
  }
  .animate-spin {
    animation: var(--animate-spin);
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }
  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }
  .border-white\/20 {
    border-color: color-mix(in srgb, #fff 20%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      border-color: color-mix(in oklab, var(--color-white) 20%, transparent);
    }
  }
  .border-t-white\/80 {
    border-top-color: color-mix(in srgb, #fff 80%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      border-top-color: color-mix(in oklab, var(--color-white) 80%, transparent);
    }
  }
  .bg-\[rgba\(0\,0\,0\,0\.7\)\] {
    background-color: rgba(0,0,0,0.7);
  }
  .bg-sep {
    background-color: var(--color-sep);
  }
  .object-cover {
    object-fit: cover;
  }
  .object-\[50\%_25\%\] {
    object-position: 50% 25%;
  }
  .object-\[50\%_50\%\] {
    object-position: 50% 50%;
  }
  .py-5 {
    padding-block: calc(var(--spacing) * 5);
  }
  .text-center {
    text-align: center;
  }
  .bebas-title {
    font-family: var(--font-bebas);
    --tw-leading: 100%;
    line-height: 100%;
    --tw-font-weight: var(--font-weight-extrabold);
    font-weight: var(--font-weight-extrabold);
    --tw-tracking: calc(0.05em * -1);
    letter-spacing: calc(0.05em * -1);
    text-transform: uppercase;
    font-stretch: semi-expanded;
  }
  .text-\[70px\] {
    font-size: 70px;
  }
  .text-white {
    color: var(--color-white);
  }
  .opacity-100 {
    opacity: 100%;
  }
  .saturate-250 {
    --tw-saturate: saturate(250%);
    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,);
  }
  .backdrop-blur-\[50px\] {
    --tw-backdrop-blur: blur(50px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
    backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .hover\:underline {
    &:hover {
      @media (hover: hover) {
        text-decoration-line: underline;
      }
    }
  }
  .md\:mt-\[50px\] {
    @media (width >= 500px) {
      margin-top: 50px;
    }
  }
  .md\:aspect-\[16\/9\] {
    @media (width >= 500px) {
      aspect-ratio: 16/9;
    }
  }
  .md\:w-\[400px\] {
    @media (width >= 500px) {
      width: 400px;
    }
  }
  .md\:text-\[90px\] {
    @media (width >= 500px) {
      font-size: 90px;
    }
  }
  .lg\:mt-\[5\%\] {
    @media (width >= 1024px) {
      margin-top: 5%;
    }
  }
  .lg\:aspect-\[15\/9\] {
    @media (width >= 1024px) {
      aspect-ratio: 15/9;
    }
  }
  .lg\:h-auto {
    @media (width >= 1024px) {
      height: auto;
    }
  }
  .lg\:w-0 {
    @media (width >= 1024px) {
      width: calc(var(--spacing) * 0);
    }
  }
  .lg\:w-auto {
    @media (width >= 1024px) {
      width: auto;
    }
  }
  .lg\:text-\[8vw\] {
    @media (width >= 1024px) {
      font-size: 8vw;
    }
  }
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-Book.ttf') format('truetype');
  font-weight: 350;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-BookItalic.ttf') format('truetype');
  font-weight: 350;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-Middle.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-MiddleItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpandedThin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpLightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpBook.ttf') format('truetype');
  font-weight: 350;
  font-style: normal;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpBookItalic.ttf') format('truetype');
  font-weight: 350;
  font-style: italic;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpMiddle.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpMiddleIt.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpXBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-SemiExpXBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-stretch: semi-expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedThin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedLightIt.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedBook.ttf') format('truetype');
  font-weight: 350;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedBookItalic.ttf') format('truetype');
  font-weight: 350;
  font-style: italic;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedMediumIt.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeuePro-ExpandedExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-stretch: expanded;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url('fonts/BebasNeueProExpandedExtraBoldIt.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-stretch: expanded;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background-color: #a7a7a7;
  margin: 0;
}
.org-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 50px;
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
  border-color: var(--color-dark);
  padding-inline: 32px;
  padding-block: 40px;
  @media (width >= 500px) {
    padding: 50px;
  }
  @media (width >= 1024px) {
    flex-direction: row;
  }
  @media (width >= 1024px) {
    align-items: center;
  }
  @media (width >= 1024px) {
    justify-content: space-between;
  }
}
.org-name {
  flex: 1;
  font-family: var(--font-bebas);
  font-size: 86px;
  --tw-leading: 100%;
  line-height: 100%;
  --tw-font-weight: var(--font-weight-extrabold);
  font-weight: var(--font-weight-extrabold);
  --tw-tracking: calc(0.05em * -1);
  letter-spacing: calc(0.05em * -1);
  text-transform: uppercase;
  font-stretch: expanded;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  @media (width >= 1024px) {
    width: calc(var(--spacing) * 0);
  }
}
.org-info {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 16px;
  @media (width >= 1024px) {
    width: calc(var(--spacing) * 0);
  }
}
.units-3col {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  @media (width >= 1024px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.units-2col {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  @media (width >= 1024px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.units-1col {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.unit {
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
  border-color: var(--color-dark);
  padding: 50px;
  padding-inline: 32px;
  padding-block: 40px;
  &:last-child {
    border-style: var(--tw-border-style);
    border-width: 0px;
  }
  @media (width >= 500px) {
    padding: 50px;
  }
  @media (width >= 1024px) {
    border-right-style: var(--tw-border-style);
    border-right-width: 1px;
  }
  @media (width >= 1024px) {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 0px;
  }
}
.units-row {
  display: flex;
  border-style: var(--tw-border-style);
  border-width: 0px;
  @media (width >= 1024px) {
    flex-direction: row;
  }
}
.unit-name {
  font-family: var(--font-bebas);
  font-size: 46px;
  --tw-leading: 100%;
  line-height: 100%;
  --tw-font-weight: var(--font-weight-extrabold);
  font-weight: var(--font-weight-extrabold);
  --tw-tracking: calc(0.05em * -1);
  letter-spacing: calc(0.05em * -1);
  font-stretch: expanded;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.unit-contacts {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  @media (width >= 500px) {
    gap: 24px;
  }
}
.icon-text-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon {
  display: none;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  @media (width >= 500px) {
    display: block;
  }
}
.text {
  font-family: var(--font-bebas);
  font-size: 30px;
  --tw-leading: 100%;
  line-height: 100%;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  --tw-tracking: calc(0.05em * -1);
  letter-spacing: calc(0.05em * -1);
  font-stretch: expanded;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.email {
  word-break: break-all;
}
.link {
  &:hover {
    @media (hover: hover) {
      text-decoration-line: underline;
    }
  }
}
.border-b {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
  border-color: var(--color-dark);
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
    }
  }
}
