/*! tailwindcss v4.1.3 | 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-black: #000;
    --spacing: 0.25rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --font-weight-extralight: 200;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --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);
  }
}
@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;
  }
  .relative {
    position: relative;
  }
  .top-0 {
    top: calc(var(--spacing) * 0);
  }
  .top-\[-9px\] {
    top: -9px;
  }
  .top-\[21px\] {
    top: 21px;
  }
  .top-\[96px\] {
    top: 96px;
  }
  .top-\[100\%\] {
    top: 100%;
  }
  .top-\[578px\] {
    top: 578px;
  }
  .top-\[758px\] {
    top: 758px;
  }
  .bottom-\[227px\] {
    bottom: 227px;
  }
  .bottom-\[315px\] {
    bottom: 315px;
  }
  .bottom-\[358px\] {
    bottom: 358px;
  }
  .left-\[12px\] {
    left: 12px;
  }
  .left-\[calc\(50\%-11\.99\%\/2\)\] {
    left: calc(50% - 11.99% / 2);
  }
  .left-\[calc\(50\%-90\%\/2\)\] {
    left: calc(50% - 90% / 2);
  }
  .left-\[calc\(50\%-179px\/2\)\] {
    left: calc(50% - 179px / 2);
  }
  .left-\[calc\(100\%-73px\/2\)\] {
    left: calc(100% - 73px / 2);
  }
  .mx-auto {
    margin-inline: auto;
  }
  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }
  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }
  .mt-\[20px\] {
    margin-top: 20px;
  }
  .mt-\[22px\] {
    margin-top: 22px;
  }
  .mt-\[23px\] {
    margin-top: 23px;
  }
  .mt-\[47px\] {
    margin-top: 47px;
  }
  .mt-\[56px\] {
    margin-top: 56px;
  }
  .mr-1\.5 {
    margin-right: calc(var(--spacing) * 1.5);
  }
  .line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .h-6 {
    height: calc(var(--spacing) * 6);
  }
  .h-7 {
    height: calc(var(--spacing) * 7);
  }
  .h-8 {
    height: calc(var(--spacing) * 8);
  }
  .h-9 {
    height: calc(var(--spacing) * 9);
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .h-12 {
    height: calc(var(--spacing) * 12);
  }
  .h-\[1px\] {
    height: 1px;
  }
  .h-\[2px\] {
    height: 2px;
  }
  .h-\[3px\] {
    height: 3px;
  }
  .h-\[19px\] {
    height: 19px;
  }
  .h-\[21px\] {
    height: 21px;
  }
  .h-\[22px\] {
    height: 22px;
  }
  .h-\[24px\] {
    height: 24px;
  }
  .h-\[25px\] {
    height: 25px;
  }
  .h-\[28px\] {
    height: 28px;
  }
  .h-\[29px\] {
    height: 29px;
  }
  .h-\[30px\] {
    height: 30px;
  }
  .h-\[31px\] {
    height: 31px;
  }
  .h-\[32px\] {
    height: 32px;
  }
  .h-\[34px\] {
    height: 34px;
  }
  .h-\[40px\] {
    height: 40px;
  }
  .h-\[41px\] {
    height: 41px;
  }
  .h-\[42px\] {
    height: 42px;
  }
  .h-\[43px\] {
    height: 43px;
  }
  .h-\[44px\] {
    height: 44px;
  }
  .h-\[45px\] {
    height: 45px;
  }
  .h-\[48px\] {
    height: 48px;
  }
  .h-\[49px\] {
    height: 49px;
  }
  .h-\[52px\] {
    height: 52px;
  }
  .h-\[58px\] {
    height: 58px;
  }
  .h-\[59px\] {
    height: 59px;
  }
  .h-\[61px\] {
    height: 61px;
  }
  .h-\[64px\] {
    height: 64px;
  }
  .h-\[72px\] {
    height: 72px;
  }
  .h-\[80px\] {
    height: 80px;
  }
  .h-\[85px\] {
    height: 85px;
  }
  .h-\[86px\] {
    height: 86px;
  }
  .h-\[92px\] {
    height: 92px;
  }
  .h-\[95px\] {
    height: 95px;
  }
  .h-\[101px\] {
    height: 101px;
  }
  .h-\[109px\] {
    height: 109px;
  }
  .h-\[117px\] {
    height: 117px;
  }
  .h-\[124px\] {
    height: 124px;
  }
  .h-\[127px\] {
    height: 127px;
  }
  .h-\[135px\] {
    height: 135px;
  }
  .h-\[136px\] {
    height: 136px;
  }
  .h-\[144px\] {
    height: 144px;
  }
  .h-\[154px\] {
    height: 154px;
  }
  .h-\[186px\] {
    height: 186px;
  }
  .h-\[195px\] {
    height: 195px;
  }
  .h-\[225px\] {
    height: 225px;
  }
  .h-\[228px\] {
    height: 228px;
  }
  .h-\[244px\] {
    height: 244px;
  }
  .h-\[292px\] {
    height: 292px;
  }
  .h-\[370px\] {
    height: 370px;
  }
  .h-\[400px\] {
    height: 400px;
  }
  .h-\[401px\] {
    height: 401px;
  }
  .h-\[459px\] {
    height: 459px;
  }
  .h-\[510px\] {
    height: 510px;
  }
  .h-\[529px\] {
    height: 529px;
  }
  .h-\[683px\] {
    height: 683px;
  }
  .h-\[746px\] {
    height: 746px;
  }
  .h-\[893px\] {
    height: 893px;
  }
  .h-fit {
    height: fit-content;
  }
  .h-full {
    height: 100%;
  }
  .w-6 {
    width: calc(var(--spacing) * 6);
  }
  .w-\[1px\] {
    width: 1px;
  }
  .w-\[9\.5\%\] {
    width: 9.5%;
  }
  .w-\[11\.99\%\] {
    width: 11.99%;
  }
  .w-\[19\%\] {
    width: 19%;
  }
  .w-\[20\.62\%\] {
    width: 20.62%;
  }
  .w-\[24px\] {
    width: 24px;
  }
  .w-\[26px\] {
    width: 26px;
  }
  .w-\[36px\] {
    width: 36px;
  }
  .w-\[43px\] {
    width: 43px;
  }
  .w-\[45px\] {
    width: 45px;
  }
  .w-\[48px\] {
    width: 48px;
  }
  .w-\[50\%\] {
    width: 50%;
  }
  .w-\[50px\] {
    width: 50px;
  }
  .w-\[51\%\] {
    width: 51%;
  }
  .w-\[52px\] {
    width: 52px;
  }
  .w-\[61\%\] {
    width: 61%;
  }
  .w-\[64px\] {
    width: 64px;
  }
  .w-\[65px\] {
    width: 65px;
  }
  .w-\[66px\] {
    width: 66px;
  }
  .w-\[68\%\] {
    width: 68%;
  }
  .w-\[72px\] {
    width: 72px;
  }
  .w-\[73\.12\%\] {
    width: 73.12%;
  }
  .w-\[73px\] {
    width: 73px;
  }
  .w-\[74px\] {
    width: 74px;
  }
  .w-\[76px\] {
    width: 76px;
  }
  .w-\[80\%\] {
    width: 80%;
  }
  .w-\[84px\] {
    width: 84px;
  }
  .w-\[85px\] {
    width: 85px;
  }
  .w-\[87\.24\%\] {
    width: 87.24%;
  }
  .w-\[90\%\] {
    width: 90%;
  }
  .w-\[90px\] {
    width: 90px;
  }
  .w-\[92px\] {
    width: 92px;
  }
  .w-\[93px\] {
    width: 93px;
  }
  .w-\[94\.81\%\] {
    width: 94.81%;
  }
  .w-\[95\%\] {
    width: 95%;
  }
  .w-\[95px\] {
    width: 95px;
  }
  .w-\[97\%\] {
    width: 97%;
  }
  .w-\[99\%\] {
    width: 99%;
  }
  .w-\[100px\] {
    width: 100px;
  }
  .w-\[102px\] {
    width: 102px;
  }
  .w-\[110px\] {
    width: 110px;
  }
  .w-\[112px\] {
    width: 112px;
  }
  .w-\[122px\] {
    width: 122px;
  }
  .w-\[128px\] {
    width: 128px;
  }
  .w-\[129px\] {
    width: 129px;
  }
  .w-\[136px\] {
    width: 136px;
  }
  .w-\[137px\] {
    width: 137px;
  }
  .w-\[151\.28px\] {
    width: 151.28px;
  }
  .w-\[155px\] {
    width: 155px;
  }
  .w-\[170px\] {
    width: 170px;
  }
  .w-\[173px\] {
    width: 173px;
  }
  .w-\[178px\] {
    width: 178px;
  }
  .w-\[179px\] {
    width: 179px;
  }
  .w-\[184px\] {
    width: 184px;
  }
  .w-\[185px\] {
    width: 185px;
  }
  .w-\[260px\] {
    width: 260px;
  }
  .w-\[331px\] {
    width: 331px;
  }
  .w-\[335px\] {
    width: 335px;
  }
  .w-\[507px\] {
    width: 507px;
  }
  .w-\[calc\(\(101\*100\)\/121\)\%\] {
    width: calc((101 * 100) / 121)%;
  }
  .w-fit {
    width: fit-content;
  }
  .w-full {
    width: 100%;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: row;
  }
  .flex-nowrap {
    flex-wrap: nowrap;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-x-1 {
    column-gap: calc(var(--spacing) * 1);
  }
  .gap-x-1\.5 {
    column-gap: calc(var(--spacing) * 1.5);
  }
  .gap-x-2 {
    column-gap: calc(var(--spacing) * 2);
  }
  .gap-x-4 {
    column-gap: calc(var(--spacing) * 4);
  }
  .gap-x-\[3px\] {
    column-gap: 3px;
  }
  .gap-x-\[32px\] {
    column-gap: 32px;
  }
  .gap-x-\[88px\] {
    column-gap: 88px;
  }
  .gap-y-1 {
    row-gap: calc(var(--spacing) * 1);
  }
  .gap-y-2 {
    row-gap: calc(var(--spacing) * 2);
  }
  .gap-y-2\.5 {
    row-gap: calc(var(--spacing) * 2.5);
  }
  .gap-y-3 {
    row-gap: calc(var(--spacing) * 3);
  }
  .gap-y-4 {
    row-gap: calc(var(--spacing) * 4);
  }
  .gap-y-5 {
    row-gap: calc(var(--spacing) * 5);
  }
  .gap-y-6 {
    row-gap: calc(var(--spacing) * 6);
  }
  .gap-y-\[8px\] {
    row-gap: 8px;
  }
  .gap-y-\[12px\] {
    row-gap: 12px;
  }
  .gap-y-\[19px\] {
    row-gap: 19px;
  }
  .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }
  .rounded-\[4px\] {
    border-radius: 4px;
  }
  .rounded-\[6px\] {
    border-radius: 6px;
  }
  .rounded-\[7px\] {
    border-radius: 7px;
  }
  .rounded-\[8px\] {
    border-radius: 8px;
  }
  .rounded-\[12px\] {
    border-radius: 12px;
  }
  .rounded-\[16px\] {
    border-radius: 16px;
  }
  .rounded-\[20px\] {
    border-radius: 20px;
  }
  .rounded-\[68px\] {
    border-radius: 68px;
  }
  .rounded-\[70\.36px\] {
    border-radius: 70.36px;
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .rounded-md {
    border-radius: var(--radius-md);
  }
  .rounded-xl {
    border-radius: var(--radius-xl);
  }
  .rounded-b-2xl {
    border-bottom-right-radius: var(--radius-2xl);
    border-bottom-left-radius: var(--radius-2xl);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-\[5px\] {
    border-style: var(--tw-border-style);
    border-width: 5px;
  }
  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }
  .border-b-2 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 2px;
  }
  .border-solid {
    --tw-border-style: solid;
    border-style: solid;
  }
  .border-\[\#194BF0\] {
    border-color: #194BF0;
  }
  .border-\[\#08237D\] {
    border-color: #08237D;
  }
  .border-\[\#868686\] {
    border-color: #868686;
  }
  .border-\[\#C2C2C2\] {
    border-color: #C2C2C2;
  }
  .border-\[\#D7D7D7\] {
    border-color: #D7D7D7;
  }
  .border-\[\#F3F3F3\] {
    border-color: #F3F3F3;
  }
  .border-\[\#FFFFFF\] {
    border-color: #FFFFFF;
  }
  .border-b-\[\#D7D7D7\] {
    border-bottom-color: #D7D7D7;
  }
  .border-b-\[\#FDB713\] {
    border-bottom-color: #FDB713;
  }
  .bg-\[\#000000\] {
    background-color: #000000;
  }
  .bg-\[\#1E1E1EE5\] {
    background-color: #1E1E1EE5;
  }
  .bg-\[\#194BF0\] {
    background-color: #194BF0;
  }
  .bg-\[\#D7D7D7\] {
    background-color: #D7D7D7;
  }
  .bg-\[\#F3F3F3\] {
    background-color: #F3F3F3;
  }
  .bg-\[\#FDB713\] {
    background-color: #FDB713;
  }
  .bg-\[\#FFFFFF\] {
    background-color: #FFFFFF;
  }
  .bg-\[\#ffffff\] {
    background-color: #ffffff;
  }
  .bg-\[white\] {
    background-color: white;
  }
  .bg-black {
    background-color: var(--color-black);
  }
  .bg-\[url\(\.\.\/image\/about-repair\.png\)\] {
    background-image: url(../image/about-repair.png);
  }
  .bg-\[url\(\.\.\/image\/banner-question\.png\)\] {
    background-image: url(../image/banner-question.png);
  }
  .bg-\[url\(\.\.\/image\/banner\.png\)\] {
    background-image: url(../image/banner.png);
  }
  .bg-\[url\(\.\.\/image\/whay-auto\.png\)\] {
    background-image: url(../image/whay-auto.png);
  }
  .bg-cover {
    background-size: cover;
  }
  .bg-center {
    background-position: center;
  }
  .bg-top {
    background-position: top;
  }
  .bg-no-repeat {
    background-repeat: no-repeat;
  }
  .object-cover {
    object-fit: cover;
  }
  .object-center {
    object-position: center;
  }
  .p-1 {
    padding: calc(var(--spacing) * 1);
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .p-3 {
    padding: calc(var(--spacing) * 3);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-6 {
    padding: calc(var(--spacing) * 6);
  }
  .px-1\.5 {
    padding-inline: calc(var(--spacing) * 1.5);
  }
  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }
  .px-\[24px\] {
    padding-inline: 24px;
  }
  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-6 {
    padding-block: calc(var(--spacing) * 6);
  }
  .py-\[41px\] {
    padding-block: 41px;
  }
  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }
  .pt-3 {
    padding-top: calc(var(--spacing) * 3);
  }
  .pr-3 {
    padding-right: calc(var(--spacing) * 3);
  }
  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }
  .pb-3 {
    padding-bottom: calc(var(--spacing) * 3);
  }
  .text-center {
    text-align: center;
  }
  .text-justify {
    text-align: justify;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .font-\(family-name\:--estedad-fd\) {
    font-family: var(--estedad-fd);
  }
  .font-\(family-name\:--number\) {
    font-family: var(--number);
  }
  .font-\[--estedad-fd\] {
    font-family: --estedad-fd;
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .text-\[12px\] {
    font-size: 12px;
  }
  .text-\[14px\] {
    font-size: 14px;
  }
  .text-\[15px\] {
    font-size: 15px;
  }
  .text-\[16px\] {
    font-size: 16px;
  }
  .text-\[18px\] {
    font-size: 18px;
  }
  .text-\[24px\] {
    font-size: 24px;
  }
  .text-\[32px\] {
    font-size: 32px;
  }
  .text-\[44px\] {
    font-size: 44px;
  }
  .leading-5 {
    --tw-leading: calc(var(--spacing) * 5);
    line-height: calc(var(--spacing) * 5);
  }
  .leading-9 {
    --tw-leading: calc(var(--spacing) * 9);
    line-height: calc(var(--spacing) * 9);
  }
  .leading-\[21px\] {
    --tw-leading: 21px;
    line-height: 21px;
  }
  .leading-\[22px\] {
    --tw-leading: 22px;
    line-height: 22px;
  }
  .leading-\[25px\] {
    --tw-leading: 25px;
    line-height: 25px;
  }
  .leading-\[28\.8px\] {
    --tw-leading: 28.8px;
    line-height: 28.8px;
  }
  .leading-\[28\.13px\] {
    --tw-leading: 28.13px;
    line-height: 28.13px;
  }
  .leading-\[28px\] {
    --tw-leading: 28px;
    line-height: 28px;
  }
  .leading-\[29px\] {
    --tw-leading: 29px;
    line-height: 29px;
  }
  .leading-\[42px\] {
    --tw-leading: 42px;
    line-height: 42px;
  }
  .leading-\[45px\] {
    --tw-leading: 45px;
    line-height: 45px;
  }
  .leading-\[61\.6px\] {
    --tw-leading: 61.6px;
    line-height: 61.6px;
  }
  .leading-\[140\%\] {
    --tw-leading: 140%;
    line-height: 140%;
  }
  .leading-\[180\%\] {
    --tw-leading: 180%;
    line-height: 180%;
  }
  .font-\(--estedad-fd\) {
    --tw-font-weight: var(--estedad-fd);
    font-weight: var(--estedad-fd);
  }
  .font-\[400\] {
    --tw-font-weight: 400;
    font-weight: 400;
  }
  .font-\[400px\] {
    --tw-font-weight: 400px;
    font-weight: 400px;
  }
  .font-\[600\] {
    --tw-font-weight: 600;
    font-weight: 600;
  }
  .font-\[700\] {
    --tw-font-weight: 700;
    font-weight: 700;
  }
  .font-black {
    --tw-font-weight: var(--font-weight-black);
    font-weight: var(--font-weight-black);
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-extrabold {
    --tw-font-weight: var(--font-weight-extrabold);
    font-weight: var(--font-weight-extrabold);
  }
  .font-extralight {
    --tw-font-weight: var(--font-weight-extralight);
    font-weight: var(--font-weight-extralight);
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .text-nowrap {
    text-wrap: nowrap;
  }
  .text-wrap {
    text-wrap: wrap;
  }
  .text-\[\#0C0C0C\] {
    color: #0C0C0C;
  }
  .text-\[\#5E5E5E\] {
    color: #5E5E5E;
  }
  .text-\[\#9A9A9A\] {
    color: #9A9A9A;
  }
  .text-\[\#194BF0\] {
    color: #194BF0;
  }
  .text-\[\#212121\] {
    color: #212121;
  }
  .text-\[\#353535\] {
    color: #353535;
  }
  .text-\[\#414141\] {
    color: #414141;
  }
  .text-\[\#494949\] {
    color: #494949;
  }
  .text-\[\#727272\] {
    color: #727272;
  }
  .text-\[\#757575\] {
    color: #757575;
  }
  .text-\[\#868686\] {
    color: #868686;
  }
  .text-\[\#C2C2C2\] {
    color: #C2C2C2;
  }
  .text-\[\#D79C10\] {
    color: #D79C10;
  }
  .text-\[\#F9F9F9\] {
    color: #F9F9F9;
  }
  .text-\[\#FDB713\] {
    color: #FDB713;
  }
  .text-\[\#FFFBFB\] {
    color: #FFFBFB;
  }
  .text-\[\#FFFFFF\] {
    color: #FFFFFF;
  }
  .text-\[\#ffffff\] {
    color: #ffffff;
  }
  .opacity-60 {
    opacity: 60%;
  }
  .drop-shadow-\[0px_0px_6px_\#00000059\] {
    --tw-drop-shadow-size: drop-shadow(0px 0px 6px var(--tw-drop-shadow-color, #00000059));
    --tw-drop-shadow: var(--tw-drop-shadow-size);
    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,);
  }
  .drop-shadow-\[0px_1px_2px_\#00000040\] {
    --tw-drop-shadow-size: drop-shadow(0px 1px 2px var(--tw-drop-shadow-color, #00000040));
    --tw-drop-shadow: var(--tw-drop-shadow-size);
    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,);
  }
  .drop-shadow-\[0px_4px_4px_\#00000040\] {
    --tw-drop-shadow-size: drop-shadow(0px 4px 4px var(--tw-drop-shadow-color, #00000040));
    --tw-drop-shadow: var(--tw-drop-shadow-size);
    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-opacity-35 {
    --tw-backdrop-opacity: opacity(35%);
    -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,);
  }
  .focus\:outline-0 {
    &:focus {
      outline-style: var(--tw-outline-style);
      outline-width: 0px;
    }
  }
  .mobile\:absolute {
    @media (width >= 340px) {
      position: absolute;
    }
  }
  .mobile\:static {
    @media (width >= 340px) {
      position: static;
    }
  }
  .mobile\:top-0 {
    @media (width >= 340px) {
      top: calc(var(--spacing) * 0);
    }
  }
  .mobile\:top-\[120px\] {
    @media (width >= 340px) {
      top: 120px;
    }
  }
  .mobile\:top-\[193px\] {
    @media (width >= 340px) {
      top: 193px;
    }
  }
  .mobile\:top-\[310px\] {
    @media (width >= 340px) {
      top: 310px;
    }
  }
  .mobile\:top-\[515px\] {
    @media (width >= 340px) {
      top: 515px;
    }
  }
  .mobile\:top-\[550px\] {
    @media (width >= 340px) {
      top: 550px;
    }
  }
  .mobile\:top-\[715px\] {
    @media (width >= 340px) {
      top: 715px;
    }
  }
  .mobile\:top-\[980px\] {
    @media (width >= 340px) {
      top: 980px;
    }
  }
  .mobile\:top-\[1400px\] {
    @media (width >= 340px) {
      top: 1400px;
    }
  }
  .mobile\:top-\[2350px\] {
    @media (width >= 340px) {
      top: 2350px;
    }
  }
  .mobile\:top-\[3150px\] {
    @media (width >= 340px) {
      top: 3150px;
    }
  }
  .mobile\:top-\[3300px\] {
    @media (width >= 340px) {
      top: 3300px;
    }
  }
  .mobile\:top-\[3360px\] {
    @media (width >= 340px) {
      top: 3360px;
    }
  }
  .mobile\:top-\[3450px\] {
    @media (width >= 340px) {
      top: 3450px;
    }
  }
  .mobile\:top-\[6700px\] {
    @media (width >= 340px) {
      top: 6700px;
    }
  }
  .mobile\:top-\[6810px\] {
    @media (width >= 340px) {
      top: 6810px;
    }
  }
  .mobile\:top-\[6870px\] {
    @media (width >= 340px) {
      top: 6870px;
    }
  }
  .mobile\:top-\[7000px\] {
    @media (width >= 340px) {
      top: 7000px;
    }
  }
  .mobile\:top-\[7080px\] {
    @media (width >= 340px) {
      top: 7080px;
    }
  }
  .mobile\:top-\[7220px\] {
    @media (width >= 340px) {
      top: 7220px;
    }
  }
  .mobile\:top-\[8145px\] {
    @media (width >= 340px) {
      top: 8145px;
    }
  }
  .mobile\:top-\[8200px\] {
    @media (width >= 340px) {
      top: 8200px;
    }
  }
  .mobile\:top-\[8335px\] {
    @media (width >= 340px) {
      top: 8335px;
    }
  }
  .mobile\:top-\[8410px\] {
    @media (width >= 340px) {
      top: 8410px;
    }
  }
  .mobile\:top-\[8600px\] {
    @media (width >= 340px) {
      top: 8600px;
    }
  }
  .mobile\:top-\[8750px\] {
    @media (width >= 340px) {
      top: 8750px;
    }
  }
  .mobile\:top-\[9850px\] {
    @media (width >= 340px) {
      top: 9850px;
    }
  }
  .mobile\:top-\[10050px\] {
    @media (width >= 340px) {
      top: 10050px;
    }
  }
  .mobile\:top-\[11100px\] {
    @media (width >= 340px) {
      top: 11100px;
    }
  }
  .mobile\:top-\[11220px\] {
    @media (width >= 340px) {
      top: 11220px;
    }
  }
  .mobile\:top-\[11300px\] {
    @media (width >= 340px) {
      top: 11300px;
    }
  }
  .mobile\:top-\[12550px\] {
    @media (width >= 340px) {
      top: 12550px;
    }
  }
  .mobile\:right-\[-100\%\] {
    @media (width >= 340px) {
      right: -100%;
    }
  }
  .mobile\:right-\[5px\] {
    @media (width >= 340px) {
      right: 5px;
    }
  }
  .mobile\:right-\[196px\] {
    @media (width >= 340px) {
      right: 196px;
    }
  }
  .mobile\:bottom-\[15px\] {
    @media (width >= 340px) {
      bottom: 15px;
    }
  }
  .mobile\:bottom-\[18px\] {
    @media (width >= 340px) {
      bottom: 18px;
    }
  }
  .mobile\:left-0 {
    @media (width >= 340px) {
      left: calc(var(--spacing) * 0);
    }
  }
  .mobile\:left-\[1\%\] {
    @media (width >= 340px) {
      left: 1%;
    }
  }
  .mobile\:left-\[32px\] {
    @media (width >= 340px) {
      left: 32px;
    }
  }
  .mobile\:left-\[65\%\] {
    @media (width >= 340px) {
      left: 65%;
    }
  }
  .mobile\:left-\[calc\(50\%-\(95\%\/2\)\)\] {
    @media (width >= 340px) {
      left: calc(50% - (95% / 2));
    }
  }
  .mobile\:left-\[calc\(50\%-90\%\/2\)\] {
    @media (width >= 340px) {
      left: calc(50% - 90% / 2);
    }
  }
  .mobile\:left-\[calc\(50\%-184px\/2\)\] {
    @media (width >= 340px) {
      left: calc(50% - 184px / 2);
    }
  }
  .mobile\:z-\[2\] {
    @media (width >= 340px) {
      z-index: 2;
    }
  }
  .mobile\:mx-auto {
    @media (width >= 340px) {
      margin-inline: auto;
    }
  }
  .mobile\:mt-2 {
    @media (width >= 340px) {
      margin-top: calc(var(--spacing) * 2);
    }
  }
  .mobile\:mt-\[480px\] {
    @media (width >= 340px) {
      margin-top: 480px;
    }
  }
  .mobile\:mt-\[1170px\] {
    @media (width >= 340px) {
      margin-top: 1170px;
    }
  }
  .mobile\:mt-\[1600px\] {
    @media (width >= 340px) {
      margin-top: 1600px;
    }
  }
  .mobile\:line-clamp-3 {
    @media (width >= 340px) {
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }
  }
  .mobile\:flex {
    @media (width >= 340px) {
      display: flex;
    }
  }
  .mobile\:hidden {
    @media (width >= 340px) {
      display: none;
    }
  }
  .mobile\:h-\[30px\] {
    @media (width >= 340px) {
      height: 30px;
    }
  }
  .mobile\:h-\[35px\] {
    @media (width >= 340px) {
      height: 35px;
    }
  }
  .mobile\:h-\[80px\] {
    @media (width >= 340px) {
      height: 80px;
    }
  }
  .mobile\:h-\[96px\] {
    @media (width >= 340px) {
      height: 96px;
    }
  }
  .mobile\:h-\[150px\] {
    @media (width >= 340px) {
      height: 150px;
    }
  }
  .mobile\:h-\[390px\] {
    @media (width >= 340px) {
      height: 390px;
    }
  }
  .mobile\:h-\[400px\] {
    @media (width >= 340px) {
      height: 400px;
    }
  }
  .mobile\:h-fit {
    @media (width >= 340px) {
      height: fit-content;
    }
  }
  .mobile\:h-full {
    @media (width >= 340px) {
      height: 100%;
    }
  }
  .mobile\:min-h-\[200px\] {
    @media (width >= 340px) {
      min-height: 200px;
    }
  }
  .mobile\:min-h-\[412px\] {
    @media (width >= 340px) {
      min-height: 412px;
    }
  }
  .mobile\:w-\[10\%\] {
    @media (width >= 340px) {
      width: 10%;
    }
  }
  .mobile\:w-\[30\%\] {
    @media (width >= 340px) {
      width: 30%;
    }
  }
  .mobile\:w-\[35px\] {
    @media (width >= 340px) {
      width: 35px;
    }
  }
  .mobile\:w-\[50\%\] {
    @media (width >= 340px) {
      width: 50%;
    }
  }
  .mobile\:w-\[50px\] {
    @media (width >= 340px) {
      width: 50px;
    }
  }
  .mobile\:w-\[70\%\] {
    @media (width >= 340px) {
      width: 70%;
    }
  }
  .mobile\:w-\[80\%\] {
    @media (width >= 340px) {
      width: 80%;
    }
  }
  .mobile\:w-\[80px\] {
    @media (width >= 340px) {
      width: 80px;
    }
  }
  .mobile\:w-\[90\%\] {
    @media (width >= 340px) {
      width: 90%;
    }
  }
  .mobile\:w-\[90vw\] {
    @media (width >= 340px) {
      width: 90vw;
    }
  }
  .mobile\:w-\[95\%\] {
    @media (width >= 340px) {
      width: 95%;
    }
  }
  .mobile\:w-\[99\%\] {
    @media (width >= 340px) {
      width: 99%;
    }
  }
  .mobile\:w-\[100\%\] {
    @media (width >= 340px) {
      width: 100%;
    }
  }
  .mobile\:w-\[120px\] {
    @media (width >= 340px) {
      width: 120px;
    }
  }
  .mobile\:w-\[150px\] {
    @media (width >= 340px) {
      width: 150px;
    }
  }
  .mobile\:w-\[200px\] {
    @media (width >= 340px) {
      width: 200px;
    }
  }
  .mobile\:w-\[335px\] {
    @media (width >= 340px) {
      width: 335px;
    }
  }
  .mobile\:w-fit {
    @media (width >= 340px) {
      width: fit-content;
    }
  }
  .mobile\:w-full {
    @media (width >= 340px) {
      width: 100%;
    }
  }
  .mobile\:max-w-full {
    @media (width >= 340px) {
      max-width: 100%;
    }
  }
  .mobile\:rotate-90 {
    @media (width >= 340px) {
      rotate: 90deg;
    }
  }
  .mobile\:flex-col {
    @media (width >= 340px) {
      flex-direction: column;
    }
  }
  .mobile\:flex-col-reverse {
    @media (width >= 340px) {
      flex-direction: column-reverse;
    }
  }
  .mobile\:flex-nowrap {
    @media (width >= 340px) {
      flex-wrap: nowrap;
    }
  }
  .mobile\:flex-wrap {
    @media (width >= 340px) {
      flex-wrap: wrap;
    }
  }
  .mobile\:items-center {
    @media (width >= 340px) {
      align-items: center;
    }
  }
  .mobile\:items-end {
    @media (width >= 340px) {
      align-items: flex-end;
    }
  }
  .mobile\:items-start {
    @media (width >= 340px) {
      align-items: flex-start;
    }
  }
  .mobile\:justify-between {
    @media (width >= 340px) {
      justify-content: space-between;
    }
  }
  .mobile\:justify-center {
    @media (width >= 340px) {
      justify-content: center;
    }
  }
  .mobile\:justify-start {
    @media (width >= 340px) {
      justify-content: flex-start;
    }
  }
  .mobile\:gap-\[4px\] {
    @media (width >= 340px) {
      gap: 4px;
    }
  }
  .mobile\:gap-y-0 {
    @media (width >= 340px) {
      row-gap: calc(var(--spacing) * 0);
    }
  }
  .mobile\:gap-y-2 {
    @media (width >= 340px) {
      row-gap: calc(var(--spacing) * 2);
    }
  }
  .mobile\:gap-y-4 {
    @media (width >= 340px) {
      row-gap: calc(var(--spacing) * 4);
    }
  }
  .mobile\:gap-y-6 {
    @media (width >= 340px) {
      row-gap: calc(var(--spacing) * 6);
    }
  }
  .mobile\:gap-y-\[20px\] {
    @media (width >= 340px) {
      row-gap: 20px;
    }
  }
  .mobile\:gap-y-\[30px\] {
    @media (width >= 340px) {
      row-gap: 30px;
    }
  }
  .mobile\:rounded-md {
    @media (width >= 340px) {
      border-radius: var(--radius-md);
    }
  }
  .mobile\:border-2 {
    @media (width >= 340px) {
      border-style: var(--tw-border-style);
      border-width: 2px;
    }
  }
  .mobile\:border-solid {
    @media (width >= 340px) {
      --tw-border-style: solid;
      border-style: solid;
    }
  }
  .mobile\:border-b-black {
    @media (width >= 340px) {
      border-bottom-color: var(--color-black);
    }
  }
  .mobile\:bg-cover {
    @media (width >= 340px) {
      background-size: cover;
    }
  }
  .mobile\:bg-center {
    @media (width >= 340px) {
      background-position: center;
    }
  }
  .mobile\:p-2 {
    @media (width >= 340px) {
      padding: calc(var(--spacing) * 2);
    }
  }
  .mobile\:px-1 {
    @media (width >= 340px) {
      padding-inline: calc(var(--spacing) * 1);
    }
  }
  .mobile\:py-1\.5 {
    @media (width >= 340px) {
      padding-block: calc(var(--spacing) * 1.5);
    }
  }
  .mobile\:text-center {
    @media (width >= 340px) {
      text-align: center;
    }
  }
  .mobile\:text-right {
    @media (width >= 340px) {
      text-align: right;
    }
  }
  .mobile\:text-\[10px\] {
    @media (width >= 340px) {
      font-size: 10px;
    }
  }
  .mobile\:text-\[12px\] {
    @media (width >= 340px) {
      font-size: 12px;
    }
  }
  .mobile\:text-\[15px\] {
    @media (width >= 340px) {
      font-size: 15px;
    }
  }
  .mobile\:text-\[18px\] {
    @media (width >= 340px) {
      font-size: 18px;
    }
  }
  .mobile\:text-\[19px\] {
    @media (width >= 340px) {
      font-size: 19px;
    }
  }
  .mobile\:text-\[20px\] {
    @media (width >= 340px) {
      font-size: 20px;
    }
  }
  .mobile\:text-\[26px\] {
    @media (width >= 340px) {
      font-size: 26px;
    }
  }
  .mobile\:transition-all {
    @media (width >= 340px) {
      transition-property: all;
      transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
      transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
  }
  .mobile\:duration-300 {
    @media (width >= 340px) {
      --tw-duration: 300ms;
      transition-duration: 300ms;
    }
  }
  .desktop\:absolute {
    @media (width >= 1024px) {
      position: absolute;
    }
  }
  .desktop\:relative {
    @media (width >= 1024px) {
      position: relative;
    }
  }
  .desktop\:static {
    @media (width >= 1024px) {
      position: static;
    }
  }
  .desktop\:top-\[24px\] {
    @media (width >= 1024px) {
      top: 24px;
    }
  }
  .desktop\:top-\[210px\] {
    @media (width >= 1024px) {
      top: 210px;
    }
  }
  .desktop\:top-\[279px\] {
    @media (width >= 1024px) {
      top: 279px;
    }
  }
  .desktop\:top-\[340px\] {
    @media (width >= 1024px) {
      top: 340px;
    }
  }
  .desktop\:top-\[449px\] {
    @media (width >= 1024px) {
      top: 449px;
    }
  }
  .desktop\:top-\[828px\] {
    @media (width >= 1024px) {
      top: 828px;
    }
  }
  .desktop\:top-\[955px\] {
    @media (width >= 1024px) {
      top: 955px;
    }
  }
  .desktop\:top-\[1399px\] {
    @media (width >= 1024px) {
      top: 1399px;
    }
  }
  .desktop\:top-\[1591px\] {
    @media (width >= 1024px) {
      top: 1591px;
    }
  }
  .desktop\:top-\[1716px\] {
    @media (width >= 1024px) {
      top: 1716px;
    }
  }
  .desktop\:top-\[1788px\] {
    @media (width >= 1024px) {
      top: 1788px;
    }
  }
  .desktop\:top-\[2880px\] {
    @media (width >= 1024px) {
      top: 2880px;
    }
  }
  .desktop\:top-\[3010px\] {
    @media (width >= 1024px) {
      top: 3010px;
    }
  }
  .desktop\:top-\[3020px\] {
    @media (width >= 1024px) {
      top: 3020px;
    }
  }
  .desktop\:top-\[3073px\] {
    @media (width >= 1024px) {
      top: 3073px;
    }
  }
  .desktop\:top-\[3076px\] {
    @media (width >= 1024px) {
      top: 3076px;
    }
  }
  .desktop\:top-\[3520px\] {
    @media (width >= 1024px) {
      top: 3520px;
    }
  }
  .desktop\:top-\[3533px\] {
    @media (width >= 1024px) {
      top: 3533px;
    }
  }
  .desktop\:top-\[3595px\] {
    @media (width >= 1024px) {
      top: 3595px;
    }
  }
  .desktop\:top-\[4022px\] {
    @media (width >= 1024px) {
      top: 4022px;
    }
  }
  .desktop\:top-\[4141px\] {
    @media (width >= 1024px) {
      top: 4141px;
    }
  }
  .desktop\:top-\[4648px\] {
    @media (width >= 1024px) {
      top: 4648px;
    }
  }
  .desktop\:top-\[4767px\] {
    @media (width >= 1024px) {
      top: 4767px;
    }
  }
  .desktop\:top-\[5326px\] {
    @media (width >= 1024px) {
      top: 5326px;
    }
  }
  .desktop\:top-\[5373px\] {
    @media (width >= 1024px) {
      top: 5373px;
    }
  }
  .desktop\:top-\[5445px\] {
    @media (width >= 1024px) {
      top: 5445px;
    }
  }
  .desktop\:top-\[5895px\] {
    @media (width >= 1024px) {
      top: 5895px;
    }
  }
  .desktop\:right-\[8\.50\%\] {
    @media (width >= 1024px) {
      right: 8.50%;
    }
  }
  .desktop\:right-\[37\.254\%\] {
    @media (width >= 1024px) {
      right: 37.254%;
    }
  }
  .desktop\:right-\[105px\] {
    @media (width >= 1024px) {
      right: 105px;
    }
  }
  .desktop\:right-\[108px\] {
    @media (width >= 1024px) {
      right: 108px;
    }
  }
  .desktop\:right-\[307px\] {
    @media (width >= 1024px) {
      right: 307px;
    }
  }
  .desktop\:left-\[0px\] {
    @media (width >= 1024px) {
      left: 0px;
    }
  }
  .desktop\:left-\[4\.5\%\] {
    @media (width >= 1024px) {
      left: 4.5%;
    }
  }
  .desktop\:left-\[5\.5\%\] {
    @media (width >= 1024px) {
      left: 5.5%;
    }
  }
  .desktop\:left-\[6\%\] {
    @media (width >= 1024px) {
      left: 6%;
    }
  }
  .desktop\:left-\[7\.569\%\] {
    @media (width >= 1024px) {
      left: 7.569%;
    }
  }
  .desktop\:left-\[8\.50\%\] {
    @media (width >= 1024px) {
      left: 8.50%;
    }
  }
  .desktop\:left-\[67\.083\%\] {
    @media (width >= 1024px) {
      left: 67.083%;
    }
  }
  .desktop\:left-\[86\.5\%\] {
    @media (width >= 1024px) {
      left: 86.5%;
    }
  }
  .desktop\:left-\[143px\] {
    @media (width >= 1024px) {
      left: 143px;
    }
  }
  .desktop\:left-\[275px\] {
    @media (width >= 1024px) {
      left: 275px;
    }
  }
  .desktop\:left-\[418px\] {
    @media (width >= 1024px) {
      left: 418px;
    }
  }
  .desktop\:left-\[calc\(\(189\*100\)\/1224\)\%\] {
    @media (width >= 1024px) {
      left: calc((189 * 100) / 1224)%;
    }
  }
  .desktop\:left-\[calc\(\(948\*100\)\/1069\)\%\] {
    @media (width >= 1024px) {
      left: calc((948 * 100) / 1069)%;
    }
  }
  .desktop\:left-\[calc\(50\%-27\.5\%\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 27.5% / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-50\%\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 50% / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-76\.80\%\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 76.80% / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-82\.95\%\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 82.95% / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-90\%\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 90% / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-362px\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 362px / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-400px\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 400px / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-845px\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - 845px / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-calc\(\(1223\*100\)\/1440\)\%\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - calc((1223 * 100) / 1440)% / 2);
    }
  }
  .desktop\:left-\[calc\(50\%-calc\(\(1224\*100\)\/1440\)\%\/2\)\] {
    @media (width >= 1024px) {
      left: calc(50% - calc((1224 * 100) / 1440)% / 2);
    }
  }
  .desktop\:z-0 {
    @media (width >= 1024px) {
      z-index: 0;
    }
  }
  .desktop\:mt-0 {
    @media (width >= 1024px) {
      margin-top: calc(var(--spacing) * 0);
    }
  }
  .desktop\:mt-\[142px\] {
    @media (width >= 1024px) {
      margin-top: 142px;
    }
  }
  .desktop\:mt-\[571px\] {
    @media (width >= 1024px) {
      margin-top: 571px;
    }
  }
  .desktop\:mt-\[731px\] {
    @media (width >= 1024px) {
      margin-top: 731px;
    }
  }
  .desktop\:flex {
    @media (width >= 1024px) {
      display: flex;
    }
  }
  .desktop\:hidden {
    @media (width >= 1024px) {
      display: none;
    }
  }
  .desktop\:h-\[25px\] {
    @media (width >= 1024px) {
      height: 25px;
    }
  }
  .desktop\:h-\[28px\] {
    @media (width >= 1024px) {
      height: 28px;
    }
  }
  .desktop\:h-\[29px\] {
    @media (width >= 1024px) {
      height: 29px;
    }
  }
  .desktop\:h-\[40px\] {
    @media (width >= 1024px) {
      height: 40px;
    }
  }
  .desktop\:h-\[42px\] {
    @media (width >= 1024px) {
      height: 42px;
    }
  }
  .desktop\:h-\[45px\] {
    @media (width >= 1024px) {
      height: 45px;
    }
  }
  .desktop\:h-\[50px\] {
    @media (width >= 1024px) {
      height: 50px;
    }
  }
  .desktop\:h-\[60px\] {
    @media (width >= 1024px) {
      height: 60px;
    }
  }
  .desktop\:h-\[65px\] {
    @media (width >= 1024px) {
      height: 65px;
    }
  }
  .desktop\:h-\[70px\] {
    @media (width >= 1024px) {
      height: 70px;
    }
  }
  .desktop\:h-\[80px\] {
    @media (width >= 1024px) {
      height: 80px;
    }
  }
  .desktop\:h-\[95px\] {
    @media (width >= 1024px) {
      height: 95px;
    }
  }
  .desktop\:h-\[96px\] {
    @media (width >= 1024px) {
      height: 96px;
    }
  }
  .desktop\:h-\[107px\] {
    @media (width >= 1024px) {
      height: 107px;
    }
  }
  .desktop\:h-\[144px\] {
    @media (width >= 1024px) {
      height: 144px;
    }
  }
  .desktop\:h-\[147px\] {
    @media (width >= 1024px) {
      height: 147px;
    }
  }
  .desktop\:h-\[201px\] {
    @media (width >= 1024px) {
      height: 201px;
    }
  }
  .desktop\:h-\[391px\] {
    @media (width >= 1024px) {
      height: 391px;
    }
  }
  .desktop\:h-\[510px\] {
    @media (width >= 1024px) {
      height: 510px;
    }
  }
  .desktop\:h-\[511px\] {
    @media (width >= 1024px) {
      height: 511px;
    }
  }
  .desktop\:h-\[1044px\] {
    @media (width >= 1024px) {
      height: 1044px;
    }
  }
  .desktop\:h-fit {
    @media (width >= 1024px) {
      height: fit-content;
    }
  }
  .desktop\:h-full {
    @media (width >= 1024px) {
      height: 100%;
    }
  }
  .desktop\:min-h-\[142px\] {
    @media (width >= 1024px) {
      min-height: 142px;
    }
  }
  .desktop\:min-h-full {
    @media (width >= 1024px) {
      min-height: 100%;
    }
  }
  .desktop\:w-1\/2 {
    @media (width >= 1024px) {
      width: calc(1/2 * 100%);
    }
  }
  .desktop\:w-1\/3 {
    @media (width >= 1024px) {
      width: calc(1/3 * 100%);
    }
  }
  .desktop\:w-1\/4 {
    @media (width >= 1024px) {
      width: calc(1/4 * 100%);
    }
  }
  .desktop\:w-\[3\.41\%\] {
    @media (width >= 1024px) {
      width: 3.41%;
    }
  }
  .desktop\:w-\[6\%\] {
    @media (width >= 1024px) {
      width: 6%;
    }
  }
  .desktop\:w-\[11\%\] {
    @media (width >= 1024px) {
      width: 11%;
    }
  }
  .desktop\:w-\[19\.47\%\] {
    @media (width >= 1024px) {
      width: 19.47%;
    }
  }
  .desktop\:w-\[22\.73\%\] {
    @media (width >= 1024px) {
      width: 22.73%;
    }
  }
  .desktop\:w-\[23\.5\%\] {
    @media (width >= 1024px) {
      width: 23.5%;
    }
  }
  .desktop\:w-\[25\.50\%\] {
    @media (width >= 1024px) {
      width: 25.50%;
    }
  }
  .desktop\:w-\[27\%\] {
    @media (width >= 1024px) {
      width: 27%;
    }
  }
  .desktop\:w-\[27\.5\%\] {
    @media (width >= 1024px) {
      width: 27.5%;
    }
  }
  .desktop\:w-\[28\.69\%\] {
    @media (width >= 1024px) {
      width: 28.69%;
    }
  }
  .desktop\:w-\[30\%\] {
    @media (width >= 1024px) {
      width: 30%;
    }
  }
  .desktop\:w-\[32\.3\%\] {
    @media (width >= 1024px) {
      width: 32.3%;
    }
  }
  .desktop\:w-\[43\%\] {
    @media (width >= 1024px) {
      width: 43%;
    }
  }
  .desktop\:w-\[50\%\] {
    @media (width >= 1024px) {
      width: 50%;
    }
  }
  .desktop\:w-\[51\.30\%\] {
    @media (width >= 1024px) {
      width: 51.30%;
    }
  }
  .desktop\:w-\[63\.50\%\] {
    @media (width >= 1024px) {
      width: 63.50%;
    }
  }
  .desktop\:w-\[69\.57px\] {
    @media (width >= 1024px) {
      width: 69.57px;
    }
  }
  .desktop\:w-\[70\%\] {
    @media (width >= 1024px) {
      width: 70%;
    }
  }
  .desktop\:w-\[71px\] {
    @media (width >= 1024px) {
      width: 71px;
    }
  }
  .desktop\:w-\[73\.96px\] {
    @media (width >= 1024px) {
      width: 73.96px;
    }
  }
  .desktop\:w-\[74\%\] {
    @media (width >= 1024px) {
      width: 74%;
    }
  }
  .desktop\:w-\[76\.57\%\] {
    @media (width >= 1024px) {
      width: 76.57%;
    }
  }
  .desktop\:w-\[76\.80\%\] {
    @media (width >= 1024px) {
      width: 76.80%;
    }
  }
  .desktop\:w-\[80px\] {
    @media (width >= 1024px) {
      width: 80px;
    }
  }
  .desktop\:w-\[82\.95\%\] {
    @media (width >= 1024px) {
      width: 82.95%;
    }
  }
  .desktop\:w-\[86\.56px\] {
    @media (width >= 1024px) {
      width: 86.56px;
    }
  }
  .desktop\:w-\[86px\] {
    @media (width >= 1024px) {
      width: 86px;
    }
  }
  .desktop\:w-\[87\.50\%\] {
    @media (width >= 1024px) {
      width: 87.50%;
    }
  }
  .desktop\:w-\[90\%\] {
    @media (width >= 1024px) {
      width: 90%;
    }
  }
  .desktop\:w-\[92\%\] {
    @media (width >= 1024px) {
      width: 92%;
    }
  }
  .desktop\:w-\[93\.33px\] {
    @media (width >= 1024px) {
      width: 93.33px;
    }
  }
  .desktop\:w-\[94\%\] {
    @media (width >= 1024px) {
      width: 94%;
    }
  }
  .desktop\:w-\[94px\] {
    @media (width >= 1024px) {
      width: 94px;
    }
  }
  .desktop\:w-\[96\.84\%\] {
    @media (width >= 1024px) {
      width: 96.84%;
    }
  }
  .desktop\:w-\[96px\] {
    @media (width >= 1024px) {
      width: 96px;
    }
  }
  .desktop\:w-\[97\%\] {
    @media (width >= 1024px) {
      width: 97%;
    }
  }
  .desktop\:w-\[97\.31\%\] {
    @media (width >= 1024px) {
      width: 97.31%;
    }
  }
  .desktop\:w-\[99\.58px\] {
    @media (width >= 1024px) {
      width: 99.58px;
    }
  }
  .desktop\:w-\[104px\] {
    @media (width >= 1024px) {
      width: 104px;
    }
  }
  .desktop\:w-\[106px\] {
    @media (width >= 1024px) {
      width: 106px;
    }
  }
  .desktop\:w-\[109\.92px\] {
    @media (width >= 1024px) {
      width: 109.92px;
    }
  }
  .desktop\:w-\[151px\] {
    @media (width >= 1024px) {
      width: 151px;
    }
  }
  .desktop\:w-\[186px\] {
    @media (width >= 1024px) {
      width: 186px;
    }
  }
  .desktop\:w-\[315px\] {
    @media (width >= 1024px) {
      width: 315px;
    }
  }
  .desktop\:w-\[362px\] {
    @media (width >= 1024px) {
      width: 362px;
    }
  }
  .desktop\:w-\[400px\] {
    @media (width >= 1024px) {
      width: 400px;
    }
  }
  .desktop\:w-\[423px\] {
    @media (width >= 1024px) {
      width: 423px;
    }
  }
  .desktop\:w-\[430px\] {
    @media (width >= 1024px) {
      width: 430px;
    }
  }
  .desktop\:w-\[460px\] {
    @media (width >= 1024px) {
      width: 460px;
    }
  }
  .desktop\:w-\[845px\] {
    @media (width >= 1024px) {
      width: 845px;
    }
  }
  .desktop\:w-\[1175px\] {
    @media (width >= 1024px) {
      width: 1175px;
    }
  }
  .desktop\:w-\[calc\(\(121\*100\)\/1069\)\%\] {
    @media (width >= 1024px) {
      width: calc((121 * 100) / 1069)%;
    }
  }
  .desktop\:w-\[calc\(\(845\*100\)\/1224\)\%\] {
    @media (width >= 1024px) {
      width: calc((845 * 100) / 1224)%;
    }
  }
  .desktop\:w-\[calc\(\(1223\*100\)\/1440\)\%\] {
    @media (width >= 1024px) {
      width: calc((1223 * 100) / 1440)%;
    }
  }
  .desktop\:w-\[calc\(\(1224\*100\)\/1440\)\%\] {
    @media (width >= 1024px) {
      width: calc((1224 * 100) / 1440)%;
    }
  }
  .desktop\:w-fit {
    @media (width >= 1024px) {
      width: fit-content;
    }
  }
  .desktop\:w-full {
    @media (width >= 1024px) {
      width: 100%;
    }
  }
  .desktop\:flex-row {
    @media (width >= 1024px) {
      flex-direction: row;
    }
  }
  .desktop\:flex-nowrap {
    @media (width >= 1024px) {
      flex-wrap: nowrap;
    }
  }
  .desktop\:flex-wrap {
    @media (width >= 1024px) {
      flex-wrap: wrap;
    }
  }
  .desktop\:items-center {
    @media (width >= 1024px) {
      align-items: center;
    }
  }
  .desktop\:items-start {
    @media (width >= 1024px) {
      align-items: flex-start;
    }
  }
  .desktop\:justify-center {
    @media (width >= 1024px) {
      justify-content: center;
    }
  }
  .desktop\:justify-end {
    @media (width >= 1024px) {
      justify-content: flex-end;
    }
  }
  .desktop\:gap-x-2 {
    @media (width >= 1024px) {
      column-gap: calc(var(--spacing) * 2);
    }
  }
  .desktop\:gap-x-3 {
    @media (width >= 1024px) {
      column-gap: calc(var(--spacing) * 3);
    }
  }
  .desktop\:gap-x-4 {
    @media (width >= 1024px) {
      column-gap: calc(var(--spacing) * 4);
    }
  }
  .desktop\:gap-x-6 {
    @media (width >= 1024px) {
      column-gap: calc(var(--spacing) * 6);
    }
  }
  .desktop\:gap-x-14 {
    @media (width >= 1024px) {
      column-gap: calc(var(--spacing) * 14);
    }
  }
  .desktop\:gap-x-\[19px\] {
    @media (width >= 1024px) {
      column-gap: 19px;
    }
  }
  .desktop\:gap-x-\[81px\] {
    @media (width >= 1024px) {
      column-gap: 81px;
    }
  }
  .desktop\:rounded-2xl {
    @media (width >= 1024px) {
      border-radius: var(--radius-2xl);
    }
  }
  .desktop\:border {
    @media (width >= 1024px) {
      border-style: var(--tw-border-style);
      border-width: 1px;
    }
  }
  .desktop\:border-solid {
    @media (width >= 1024px) {
      --tw-border-style: solid;
      border-style: solid;
    }
  }
  .desktop\:border-\[\#F3F3F3\] {
    @media (width >= 1024px) {
      border-color: #F3F3F3;
    }
  }
  .desktop\:p-6 {
    @media (width >= 1024px) {
      padding: calc(var(--spacing) * 6);
    }
  }
  .desktop\:px-0 {
    @media (width >= 1024px) {
      padding-inline: calc(var(--spacing) * 0);
    }
  }
  .desktop\:py-3 {
    @media (width >= 1024px) {
      padding-block: calc(var(--spacing) * 3);
    }
  }
  .desktop\:pr-3\.5 {
    @media (width >= 1024px) {
      padding-right: calc(var(--spacing) * 3.5);
    }
  }
  .desktop\:pr-\[15\.96px\] {
    @media (width >= 1024px) {
      padding-right: 15.96px;
    }
  }
  .desktop\:pl-\[21\.96px\] {
    @media (width >= 1024px) {
      padding-left: 21.96px;
    }
  }
  .desktop\:text-justify {
    @media (width >= 1024px) {
      text-align: justify;
    }
  }
  .desktop\:text-right {
    @media (width >= 1024px) {
      text-align: right;
    }
  }
  .desktop\:text-2xl {
    @media (width >= 1024px) {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
  }
  .desktop\:text-base {
    @media (width >= 1024px) {
      font-size: var(--text-base);
      line-height: var(--tw-leading, var(--text-base--line-height));
    }
  }
  .desktop\:text-\[16px\] {
    @media (width >= 1024px) {
      font-size: 16px;
    }
  }
  .desktop\:text-\[31px\] {
    @media (width >= 1024px) {
      font-size: 31px;
    }
  }
}
@font-face {
  font-family: estedad-black;
  src: url(../font/Estedad-Black.ttf);
}
@font-face {
  font-family: estedad-bold;
  src: url(../font/Estedad-Bold.ttf);
}
@font-face {
  font-family: estedad-extraBold;
  src: url(../font/Estedad-ExtraBold.ttf);
}
@font-face {
  font-family: estedad-extraLight;
  src: url(../font/Estedad-ExtraLight.ttf);
}
@font-face {
  font-family: estedad-light;
  src: url(../font/Estedad-Light.ttf);
}
@font-face {
  font-family: estedad-medium;
  src: url(../font/Estedad-Medium.ttf);
}
@font-face {
  font-family: estedad-regular;
  src: url(../font/Estedad-Regular.ttf);
}
@font-face {
  font-family: estedad-semiBold;
  src: url(../font/Estedad-SemiBold.ttf);
}
@font-face {
  font-family: estedad-thin;
  src: url(../font/Estedad-Thin.ttf);
}
@font-face {
  font-family: estedad-vf;
  src: url(../font/Estedad-FD-VF.ttf);
}
@font-face {
  font-family: number;
  src: url(../font/Samim-FD.ttf);
}
:root {
  --estedad-fd: estedad-regular;
  --estedad-vf: estedad-vf;
  --number: number;
}
@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-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;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-duration {
  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-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;
      --tw-outline-style: solid;
      --tw-duration: initial;
    }
  }
}
