*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
  }
  @font-face {
    font-family: 'CircularXX TT';
    src: url('../fonts/CircularXXWeb-Regular.woff2') format('woff2'),
         url('../fonts/CircularXXWeb-Regular.woff') format('woff');
    font-weight: 450;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularXX TT';
    src: url('../fonts/CircularXXWeb-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularXX TT';
    src: url('../fonts/CircularXXWeb-Bold.woff2') format('woff2'),
         url('../fonts/CircularXXWeb-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Assistant';
    src: url('../fonts/Assistant-Hebrew.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
    font-family: 'Assistant';
    src: url('../fonts/Assistant-Hebrew.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
    font-family: 'Assistant';
    src: url('../fonts/Assistant-Hebrew.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
    font-family: 'Assistant';
    src: url('../fonts/Assistant-Hebrew.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-family: 'CircularXX TT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

:root {
    /* colors */
    --primary-color: rgba(50, 186, 246, 1);
    /* --secondary-color: rgba(255, 255, 255, 1); */
    --Color-System-Text-Text-primary-Dark:#FBFDFF;
    --Color-System-Text-Text-primary: #0C1937;
    --Primitive-BRI-Navy---Primary-BRI-Navy-700: #000F35;
    --Primitive-BRI-Blue---Secondary-BRI-Blue-100: #BFEAFC;
    --Color-System-Layout-Border: #C4CCD1;
    --Primitive-BRI-Blue---Secondary-BRI-Blue-500: #32BAF6;
    --Color-System-Text-Text-primary: #0C1937;
    --Color-System-Input-Input-enabled: #B4B8C1;
  
    /* sizes*/
      --size-xxs: 12px;  
      --size-xs: 14px; /*14*/
      --size-md: 20px;/*20*/
      --size-lg: 24px;/*24*/
      --size-xl: 32px;/*32*/
      --size-xxl: 40px;/*40*/
      --size-xxxl: 48px;/*48*/
      --size-xxxxl: 56px;/*56*/
      --size-xxxxxl: 80px;/*80*/

      --Radius-Max: 999px;

    /* base font size */
      --base-font-size: 16px;/*16*/
}

main {
    /* padding-top: 96px; */
    padding-top: 0;

    /* @media (max-width: 1280px) {
        padding-top: 80px;
    } */
}

main > * {
    position: relative;
    background-color: #FBFDFF;
    z-index: 2;
}

/* Spinner loader */
.spinner-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}