/*! tailwindcss v4.1.5 | 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;
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-text: #212121;
    --color-text-brand: #0451dd;
    --color-text-gray-secondary: #616161;
    --color-surface-grey: #f5f5f5;
    --color-border-grey: #e1e5ec;
  }
}

@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;
  }

  :-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 {
  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }

  .top-0 {
    top: calc(var(--spacing) * 0);
  }

  .right-0 {
    right: calc(var(--spacing) * 0);
  }

  .left-0 {
    left: calc(var(--spacing) * 0);
  }

  .z-50 {
    z-index: 50;
  }

  .z-\[10\] {
    z-index: 10;
  }

  .my-\[48px\] {
    margin-block: 48px;
  }

  .my-\[60px\] {
    margin-block: 60px;
  }

  .mt-\[14px\] {
    margin-top: 14px;
  }

  .flex {
    display: flex;
  }

  .hidden {
    display: none;
  }

  .h-\[48px\] {
    height: 48px;
  }

  .h-\[60vh\] {
    height: 60vh;
  }

  .h-\[64px\] {
    height: 64px;
  }

  .h-\[80px\] {
    height: 80px;
  }

  .h-\[126px\] {
    height: 126px;
  }

  .h-\[158px\] {
    height: 158px;
  }

  .h-\[200px\] {
    height: 200px;
  }

  .h-\[220px\] {
    height: 220px;
  }

  .h-\[222px\] {
    height: 222px;
  }

  .h-\[240px\] {
    height: 240px;
  }

  .h-\[340px\] {
    height: 340px;
  }

  .h-auto {
    height: auto;
  }

  .h-full {
    height: 100%;
  }

  .w-\[33\%\] {
    width: 33%;
  }

  .w-\[45\%\] {
    width: 45%;
  }

  .w-\[48px\] {
    width: 48px;
  }

  .w-\[50\%\] {
    width: 50%;
  }

  .w-\[64px\] {
    width: 64px;
  }

  .w-\[70\%\] {
    width: 70%;
  }

  .w-\[70vw\] {
    width: 70vw;
  }

  .w-\[75\%\] {
    width: 75%;
  }

  .w-\[80\%\] {
    width: 80%;
  }

  .w-\[80px\] {
    width: 80px;
  }

  .w-\[85vw\] {
    width: 85vw;
  }

  .w-\[89\.5vw\] {
    width: 89.5vw;
  }

  .w-\[90\%\] {
    width: 90%;
  }

  .w-\[140px\] {
    width: 140px;
  }

  .w-auto {
    width: auto;
  }

  .w-full {
    width: 100%;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .flex-col {
    flex-direction: column;
  }

  .items-center {
    align-items: center;
  }

  .items-start {
    align-items: flex-start;
  }

  .justify-between {
    justify-content: space-between;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-end {
    justify-content: flex-end;
  }

  .justify-start {
    justify-content: flex-start;
  }

  .gap-\[6px\] {
    gap: 6px;
  }

  .gap-\[8px\] {
    gap: 8px;
  }

  .gap-\[10px\] {
    gap: 10px;
  }

  .gap-\[12px\] {
    gap: 12px;
  }

  .gap-\[14px\] {
    gap: 14px;
  }

  .gap-\[16px\] {
    gap: 16px;
  }

  .gap-\[20px\] {
    gap: 20px;
  }

  .gap-\[24px\] {
    gap: 24px;
  }

  .gap-\[30px\] {
    gap: 30px;
  }

  .gap-\[32px\] {
    gap: 32px;
  }

  .gap-\[40px\] {
    gap: 40px;
  }

  .gap-\[60px\] {
    gap: 60px;
  }

  .gap-\[72px\] {
    gap: 72px;
  }

  .overflow-auto {
    overflow: auto;
  }

  .overflow-scroll {
    overflow: scroll;
  }

  .rounded-\[8px\] {
    border-radius: 8px;
  }

  .rounded-\[100\%\] {
    border-radius: 100%;
  }

  .border-b-\[1px\] {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-b-border-grey {
    border-bottom-color: var(--color-border-grey);
  }

  .bg-\[\#353535\] {
    background-color: #353535;
  }

  .bg-surface-grey {
    background-color: var(--color-surface-grey);
  }

  .bg-text-brand {
    background-color: var(--color-text-brand);
  }

  .bg-white {
    background-color: var(--color-white);
  }

  .bg-\[url\(\'\.\/assets\/dots-320\.webp\'\)\] {
    background-image: url('./assets/dots-320.webp');
  }

  .bg-\[url\(\'\.\/assets\/dots\.webp\'\)\] {
    background-image: url('./assets/dots.webp');
  }

  .bg-\[url\(\'\.\/assets\/section-1\.webp\'\)\] {
    background-image: url('./assets/section-1.webp');
  }

  .bg-\[url\(\'\.\/assets\/section-2\.webp\'\)\] {
    background-image: url('./assets/section-2.webp');
  }

  .bg-\[url\(\'\.\/assets\/section-3\.webp\'\)\] {
    background-image: url('./assets/section-3.webp');
  }

  .bg-\[url\(\'\.\/assets\/suelto-1\.webp\'\)\] {
    background-image: url('./assets/suelto-1.webp');
  }

  .bg-\[url\(\'\.\/assets\/video-banner\.webp\'\)\] {
    background-image: url('./assets/video-banner.webp');
  }

  .bg-cover {
    background-size: cover;
  }

  .bg-center {
    background-position: center;
  }

  .bg-position-\[center_top_18\%\] {
    background-position: center top 18%;
  }

  .bg-position-\[center_top_20\%\] {
    background-position: center top 20%;
  }

  .p-\[24px\] {
    padding: 24px;
  }

  .p-\[32px\] {
    padding: 32px;
  }

  .px-\[24px\] {
    padding-inline: 24px;
  }

  .px-\[32px\] {
    padding-inline: 32px;
  }

  .py-\[24px\] {
    padding-block: 24px;
  }

  .py-\[48px\] {
    padding-block: 48px;
  }

  .py-\[60px\] {
    padding-block: 60px;
  }

  .pb-\[24px\] {
    padding-bottom: 24px;
  }

  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }

  .text-\[14px\] {
    font-size: 14px;
  }

  .text-\[16px\] {
    font-size: 16px;
  }

  .text-\[18px\] {
    font-size: 18px;
  }

  .text-\[20px\] {
    font-size: 20px;
  }

  .text-\[24px\] {
    font-size: 24px;
  }

  .text-\[28px\] {
    font-size: 28px;
  }

  .text-\[32px\] {
    font-size: 32px;
  }

  .text-\[40px\] {
    font-size: 40px;
  }

  .text-\[50px\] {
    font-size: 50px;
  }

  .leading-\[18px\] {
    --tw-leading: 18px;
    line-height: 18px;
  }

  .leading-\[20px\] {
    --tw-leading: 20px;
    line-height: 20px;
  }

  .leading-\[22px\] {
    --tw-leading: 22px;
    line-height: 22px;
  }

  .leading-\[24px\] {
    --tw-leading: 24px;
    line-height: 24px;
  }

  .leading-\[28px\] {
    --tw-leading: 28px;
    line-height: 28px;
  }

  .leading-\[32px\] {
    --tw-leading: 32px;
    line-height: 32px;
  }

  .leading-\[42px\] {
    --tw-leading: 42px;
    line-height: 42px;
  }

  .leading-\[44px\] {
    --tw-leading: 44px;
    line-height: 44px;
  }

  .leading-\[50px\] {
    --tw-leading: 50px;
    line-height: 50px;
  }

  .font-\[400\] {
    --tw-font-weight: 400;
    font-weight: 400;
  }

  .font-\[500\] {
    --tw-font-weight: 500;
    font-weight: 500;
  }

  .font-\[700\] {
    --tw-font-weight: 700;
    font-weight: 700;
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
  }

  .tracking-\[-1px\] {
    --tw-tracking: -1px;
    letter-spacing: -1px;
  }

  .tracking-\[-2px\] {
    --tw-tracking: -2px;
    letter-spacing: -2px;
  }

  .text-text {
    color: var(--color-text);
  }

  .text-text-brand {
    color: var(--color-text-brand);
  }

  .text-text-gray-secondary {
    color: var(--color-text-gray-secondary);
  }

  .text-white {
    color: var(--color-white);
  }

  .m\:w-\[60\%\] {
    @media (width >=568px) {
      width: 60%;
    }
  }

  .m\:w-\[80\%\] {
    @media (width >=568px) {
      width: 80%;
    }
  }

  .m\:w-\[256px\] {
    @media (width >=568px) {
      width: 256px;
    }
  }

  .m\:w-\[312px\] {
    @media (width >=568px) {
      width: 312px;
    }
  }

  .m\:w-\[383px\] {
    @media (width >=568px) {
      width: 383px;
    }
  }

  .m\:bg-\[url\(\'\.\/assets\/dots-568\.webp\'\)\] {
    @media (width >=568px) {
      background-image: url('./assets/dots-568.webp');
    }
  }

  .lg\:my-\[48px\] {
    @media (width >=768px) {
      margin-block: 48px;
    }
  }

  .lg\:flex {
    @media (width >=768px) {
      display: flex;
    }
  }

  .lg\:hidden {
    @media (width >=768px) {
      display: none;
    }
  }

  .lg\:h-\[33\%\] {
    @media (width >=768px) {
      height: 33%;
    }
  }

  .lg\:h-\[235px\] {
    @media (width >=768px) {
      height: 235px;
    }
  }

  .lg\:h-\[284px\] {
    @media (width >=768px) {
      height: 284px;
    }
  }

  .lg\:h-\[400px\] {
    @media (width >=768px) {
      height: 400px;
    }
  }

  .lg\:h-\[734px\] {
    @media (width >=768px) {
      height: 734px;
    }
  }

  .lg\:h-auto {
    @media (width >=768px) {
      height: auto;
    }
  }

  .lg\:w-\[50\%\] {
    @media (width >=768px) {
      width: 50%;
    }
  }

  .lg\:w-full {
    @media (width >=768px) {
      width: 100%;
    }
  }

  .lg\:gap-\[24px\] {
    @media (width >=768px) {
      gap: 24px;
    }
  }

  .lg\:gap-\[48px\] {
    @media (width >=768px) {
      gap: 48px;
    }
  }

  .lg\:bg-\[url\(\'\.\/assets\/dots-768\.webp\'\)\] {
    @media (width >=768px) {
      background-image: url('./assets/dots-768.webp');
    }
  }

  .lg\:py-\[48px\] {
    @media (width >=768px) {
      padding-block: 48px;
    }
  }

  .xl\:my-\[100px\] {
    @media (width >=1360px) {
      margin-block: 100px;
    }
  }

  .xl\:mt-\[100px\] {
    @media (width >=1360px) {
      margin-top: 100px;
    }
  }

  .xl\:flex {
    @media (width >=1360px) {
      display: flex;
    }
  }

  .xl\:hidden {
    @media (width >=1360px) {
      display: none;
    }
  }

  .xl\:h-\[33\%\] {
    @media (width >=1360px) {
      height: 33%;
    }
  }

  .xl\:h-\[186px\] {
    @media (width >=1360px) {
      height: 186px;
    }
  }

  .xl\:h-\[195px\] {
    @media (width >=1360px) {
      height: 195px;
    }
  }

  .xl\:h-\[258px\] {
    @media (width >=1360px) {
      height: 258px;
    }
  }

  .xl\:h-\[282px\] {
    @media (width >=1360px) {
      height: 282px;
    }
  }

  .xl\:h-\[340px\] {
    @media (width >=1360px) {
      height: 340px;
    }
  }

  .xl\:h-\[488px\] {
    @media (width >=1360px) {
      height: 488px;
    }
  }

  .xl\:h-\[500px\] {
    @media (width >=1360px) {
      height: 500px;
    }
  }

  .xl\:h-\[640px\] {
    @media (width >=1360px) {
      height: 640px;
    }
  }

  .xl\:h-\[734px\] {
    @media (width >=1360px) {
      height: 734px;
    }
  }

  .xl\:h-auto {
    @media (width >=1360px) {
      height: auto;
    }
  }

  .xl\:h-full {
    @media (width >=1360px) {
      height: 100%;
    }
  }

  .xl\:w-\[25\%\] {
    @media (width >=1360px) {
      width: 25%;
    }
  }

  .xl\:w-\[33\%\] {
    @media (width >=1360px) {
      width: 33%;
    }
  }

  .xl\:w-\[38\%\] {
    @media (width >=1360px) {
      width: 38%;
    }
  }

  .xl\:w-\[40\%\] {
    @media (width >=1360px) {
      width: 40%;
    }
  }

  .xl\:w-\[45\%\] {
    @media (width >=1360px) {
      width: 45%;
    }
  }

  .xl\:w-\[50\%\] {
    @media (width >=1360px) {
      width: 50%;
    }
  }

  .xl\:w-\[66\%\] {
    @media (width >=1360px) {
      width: 66%;
    }
  }

  .xl\:w-\[70\%\] {
    @media (width >=1360px) {
      width: 70%;
    }
  }

  .xl\:w-full {
    @media (width >=1360px) {
      width: 100%;
    }
  }

  .xl\:max-w-\[1296px\] {
    @media (width >=1360px) {
      max-width: 1296px;
    }
  }

  .xl\:flex-row {
    @media (width >=1360px) {
      flex-direction: row;
    }
  }

  .xl\:justify-between {
    @media (width >=1360px) {
      justify-content: space-between;
    }
  }

  .xl\:gap-\[12px\] {
    @media (width >=1360px) {
      gap: 12px;
    }
  }

  .xl\:gap-\[32px\] {
    @media (width >=1360px) {
      gap: 32px;
    }
  }

  .xl\:gap-\[40px\] {
    @media (width >=1360px) {
      gap: 40px;
    }
  }

  .xl\:gap-\[60px\] {
    @media (width >=1360px) {
      gap: 60px;
    }
  }

  .xl\:gap-\[134px\] {
    @media (width >=1360px) {
      gap: 134px;
    }
  }

  .xl\:bg-\[url\(\'\.\/assets\/dots\.webp\'\)\] {
    @media (width >=1360px) {
      background-image: url('./assets/dots.webp');
    }
  }

  .xl\:p-\[24px\] {
    @media (width >=1360px) {
      padding: 24px;
    }
  }

  .xl\:p-\[32px\] {
    @media (width >=1360px) {
      padding: 32px;
    }
  }

  .xl\:px-0 {
    @media (width >=1360px) {
      padding-inline: calc(var(--spacing) * 0);
    }
  }

  .xl\:py-\[100px\] {
    @media (width >=1360px) {
      padding-block: 100px;
    }
  }

  .xl\:pt-\[60px\] {
    @media (width >=1360px) {
      padding-top: 60px;
    }
  }

  .xl\:pb-0 {
    @media (width >=1360px) {
      padding-bottom: calc(var(--spacing) * 0);
    }
  }

  .xl\:pb-\[100px\] {
    @media (width >=1360px) {
      padding-bottom: 100px;
    }
  }

  .xl\:text-\[14px\] {
    @media (width >=1360px) {
      font-size: 14px;
    }
  }

  .xl\:text-\[16px\] {
    @media (width >=1360px) {
      font-size: 16px;
    }
  }

  .xl\:text-\[18px\] {
    @media (width >=1360px) {
      font-size: 18px;
    }
  }

  .xl\:text-\[20px\] {
    @media (width >=1360px) {
      font-size: 20px;
    }
  }

  .xl\:text-\[32px\] {
    @media (width >=1360px) {
      font-size: 32px;
    }
  }

  .xl\:text-\[40px\] {
    @media (width >=1360px) {
      font-size: 40px;
    }
  }

  .xl\:text-\[50px\] {
    @media (width >=1360px) {
      font-size: 50px;
    }
  }

  .xl\:leading-\[18px\] {
    @media (width >=1360px) {
      --tw-leading: 18px;
      line-height: 18px;
    }
  }

  .xl\:leading-\[20px\] {
    @media (width >=1360px) {
      --tw-leading: 20px;
      line-height: 20px;
    }
  }

  .xl\:leading-\[22px\] {
    @media (width >=1360px) {
      --tw-leading: 22px;
      line-height: 22px;
    }
  }

  .xl\:leading-\[24px\] {
    @media (width >=1360px) {
      --tw-leading: 24px;
      line-height: 24px;
    }
  }

  .xl\:leading-\[34px\] {
    @media (width >=1360px) {
      --tw-leading: 34px;
      line-height: 34px;
    }
  }

  .xl\:leading-\[44px\] {
    @media (width >=1360px) {
      --tw-leading: 44px;
      line-height: 44px;
    }
  }

  .xl\:leading-\[50px\] {
    @media (width >=1360px) {
      --tw-leading: 50px;
      line-height: 50px;
    }
  }

  .xl\:font-\[400\] {
    @media (width >=1360px) {
      --tw-font-weight: 400;
      font-weight: 400;
    }
  }

  .xl\:font-\[500\] {
    @media (width >=1360px) {
      --tw-font-weight: 500;
      font-weight: 500;
    }
  }

  .xl\:font-\[700\] {
    @media (width >=1360px) {
      --tw-font-weight: 700;
      font-weight: 700;
    }
  }

  .xl\:font-normal {
    @media (width >=1360px) {
      --tw-font-weight: var(--font-weight-normal);
      font-weight: var(--font-weight-normal);
    }
  }

  .xl\:tracking-\[-1px\] {
    @media (width >=1360px) {
      --tw-tracking: -1px;
      letter-spacing: -1px;
    }
  }

  .xl\:tracking-\[-2px\] {
    @media (width >=1360px) {
      --tw-tracking: -2px;
      letter-spacing: -2px;
    }
  }
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DIN";
  src: url("./fonts/DIN/DIN-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "DINCond";
  src: url("./fonts/DIN/DINCond-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "DINCond";
  src: url("./fonts/DIN/DINCond-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "DINCond";
  src: url("./fonts/DIN/DINCond-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "DINCond";
  src: url("./fonts/DIN/DINCond-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "DINCond";
  src: url("./fonts/DIN/DINCond-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

.font_normal {
  font-family: "DIN", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font_italic {
  font-family: "DIN", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.font_bold {
  font-family: "DIN", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@media screen and (min-width: 1360px) {
  .tag_text {
    color: var(--Primary-Brand-Colour-700, #0451dd);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .hero_title {
    font-size: 88px;
    font-style: normal;
    font-weight: 500;
    line-height: 88px;
    letter-spacing: -4px;
    color: var(--text-text-brand, #0451dd);

    max-width: 580px;
  }

  .hero_subtitle {
    color: var(--text-text-primary, #212121);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }

  .title_section {
    color: var(--text-text-brand, #0451dd);
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -2px;
  }

  .subtitle_section {
    color: var(--text-text-primary, #212121);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .text_section {
    color: var(--text-text-primary, #212121);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .title_cell {
    color: var(--text-text-primary, #212121);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  .number_items {
    color: var(--text-text-brand, #0451dd);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .titles_items {
    color: var(--text-text-primary, #212121);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }

  .text_items {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .button_text {
    color: var(--text-text-white, #fff);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }

  .text_cell {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .number_funciona {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .number_anim {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .number_pag {
    color: var(--text-text-primary, #212121);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .number_total_pag {
    color: var(--color-grey-scale-400, #bdbdbd);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1359px) {
  .tag_text {
    color: var(--Primary-Brand-Colour-700, #0451dd);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .hero_title {
    color: var(--text-text-brand, #0451dd);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -2px;

  }

  .hero_subtitle {
    color: var(--text-text-primary, #212121);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }

  .title_section {
    color: var(--text-text-brand, #0451dd);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -2px;
  }

  .subtitle_section {
    color: var(--text-text-primary, #212121);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .text_section {
    color: var(--text-text-primary, #212121);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .title_cell {
    color: var(--text-text-primary, #212121);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  .number_items {
    color: var(--text-text-brand, #0451dd);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .titles_items {
    color: var(--text-text-primary, #212121);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }

  .text_items {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .button_text {
    color: var(--text-text-white, #fff);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }

  .text_cell {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .number_anim {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .number_pag {
    color: var(--color-primary-700, #0451dd);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }

  .number_total_pag {
    color: var(--color-grey-scale-400, #bdbdbd);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
  .tag_text {
    color: var(--Primary-Brand-Colour-700, #0451dd);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .hero_title {
    color: var(--text-text-brand, #0451dd);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -2px;
    margin: 16px 0 24px 0;

  }

  .hero_subtitle {
    color: var(--text-text-primary, #212121);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }

  .title_section {
    color: var(--text-text-brand, #0451dd);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -2px;
  }

  .subtitle_section {
    color: var(--text-text-primary, #212121);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .text_section {
    color: var(--text-text-primary, #212121);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .title_cell {
    color: var(--text-text-primary, #212121);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  .number_items {
    color: var(--text-text-brand, #0451dd);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .titles_items {
    color: var(--text-text-primary, #212121);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }

  .text_items {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .button_text {
    color: var(--text-text-white, #fff);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }

  .text_cell {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .text_link {
    color: var(--text-text-brand, #0451dd);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }

  .number_anim {
    color: var(--text-text-grey-secondary, #616161);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .number_pag {
    color: var(--color-primary-700, #0451dd);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }

  .number_total_pag {
    color: var(--color-grey-scale-400, #bdbdbd);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

@media screen and (min-width: 1360px) {
  .cta_hero_container {
    display: flex;
    height: 48px;
    padding: 0px var(--padding-padding-16, 16px);
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-radius-8, 8px);
    background: var(--surface-surface-brand, #0451dd);
  }
}

@media screen and (min-width: 768px) and (max-width: 1359px) {
  .cta_hero_container {
    display: flex;
    height: 48px;
    padding: 0px var(--padding-padding-16, 16px);
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-radius-8, 8px);
    background: var(--surface-surface-brand, #0451dd);
  }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
  .cta_hero_container {
    display: flex;
    height: 48px;
    padding: 0px var(--padding-padding-16, 16px);
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-radius-8, 8px);
    background: var(--surface-surface-brand, #0451dd);
  }
}

.page_container {
  align-items: center;
  background: white;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1360px) {
  .tag {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 4px;
    border-radius: 100px;
    background: var(--Grey-Scale-50, #fafafa);
  }

  .home_structure {
    max-width: 1296px;
    width: 100%;

    margin-top: 60px;
    margin-bottom: 60px;
  }

  .text_hero_container {
    gap: 22px;
    align-items: start;
  }

  .banner_hero_container {
    width: 98%;
    height: 400px;
    margin-bottom: 110px;
    border-radius: var(--radius-radius-8, 8px);
    background: url("./assets/banner_cilp.webp") no-repeat center center;
    background-size: cover;
  }

  .text_cta_hero_container {
    width: 100%;
    justify-content: space-between;
  }

  .cta_hero_container {
    display: flex;
    height: 48px;
    padding: 0px var(--padding-padding-16, 16px);
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-radius-8, 8px);
    background: var(--surface-surface-brand, #0451dd);
  }

  .for_mobile {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1359px) {
  .tag {
    width: auto;
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    background: var(--Grey-Scale-50, #fafafa);
  }

  .home_structure {
    width: 100%;
    padding: 0px 24px;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .text_hero_container {
    gap: 24px;
    height: 100%;
    align-items: start;
    justify-content: space-between;
  }

  .banner_hero_container {
    width: 98%;
    height: 400px;
    background: url("./assets/banner_cilp.webp") no-repeat center center;
    background-size: cover;
    border-radius: var(--radius-radius-8, 8px);
  }

  .text_cta_hero_container {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
  }

  .cta_hero_container {
    display: flex;
    height: 48px;
    padding: 0px var(--padding-padding-16, 16px);
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-radius-8, 8px);
    background: var(--surface-surface-brand, #0451dd);
  }

  .for_mobile {
    display: none;
  }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
  .tag {
    width: auto;
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    background: var(--Grey-Scale-50, #fafafa);
  }

  .home_structure {
    width: 100%;
    padding: 0px 24px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .text_hero_container {
    height: 100%;
    align-items: start;
    justify-content: space-between;
  }

  .banner_hero_container {
    width: 98%;
    height: 400px;
    background: url("./assets/banner_cilp.webp") no-repeat center center;
    background-size: cover;
    border-radius: var(--radius-radius-8, 8px);
  }

  .text_cta_hero_container {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
  }

  .cta_hero_container {
    display: flex;
    height: 48px;
    padding: 0px var(--padding-padding-16, 16px);
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-radius-8, 8px);
    background: var(--surface-surface-brand, #0451dd);
  }

  .for_desktop {
    display: none;
  }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
  .funciona_structure {
    padding: 100px 24px;
    width: 100%;
    height: auto;
    justify-content: space-between;
  }

  .sections_funciona_container {
    display: none;
  }

  .section_funciona_container {
    width: 300px;
    height: 486px;
    gap: 24px;
    scroll-snap-align: start;
  }

  .img_funciona_container {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .text_funciona_container {
    gap: 10px;
  }

  .slider_wrapper::-webkit-scrollbar {
    display: none;
  }

  .slider_paginator {
    width: 100%;
    justify-content: center;
    align-items: start;
    gap: 10px;
  }

  .active_state_pag {
    width: 100%;
    align-items: center;
    justify-content: start;
    gap: 4px;
  }

  .barra_state {
    width: 20px;
    height: 4px;
    border-radius: 20px;
    background: var(--color-grey-scale-400, #bdbdbd);
  }

  .barra_state_active {
    width: 54px;
    height: 4px;
    border-radius: 20px;
    background: var(--color-primary-700, #0451dd);
  }
}

@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;
}

@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-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
    }
  }
}

.hero_structure2 {
  padding: 0 5px;
  width: 100%;
}

.hero_image {
  border-radius: 12px;
  overflow: hidden;
}

.hero_image img {
  width: 100%;
  max-width: none !important;
}


.hero_image img.img568,
.hero_image img.img768,
.hero_image img.img1440,
.hero_image img.img1920 {
  display: none;
}

@media screen and (min-width: 568px) {
  .hero_image img.img320 {
    display: none;
  }

  .hero_image img.img568 {
    display: block;
  }

}


@media screen and (min-width: 768px) {

  .hero_structure2 {
    padding: 0 8px;
  }

  .hero_image img.img568 {
    display: none;
  }

  .hero_image img.img768 {
    display: block;
  }



}

@media screen and (min-width: 1200px) {

  .hero_structure2 {
    padding: 0 15px;
  }

  .hero_image img.img768 {
    display: none;
  }

  .hero_image img.img1440 {
    display: block;
  }


}

@media screen and (min-width: 1500px) {

  .hero_structure2 {
    padding: 0 18px;
    margin-bottom: 100px;
  }

  .hero_image img.img1440 {
    display: none;
  }

  .hero_image img.img1920 {
    display: block;
  }
}