@font-face {
  font-family: 'Rembank';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/Rembank.otf) format('opentype');
  /* unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; */
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/roboto-light-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/roboto-light-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Roboto-bold';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Roboto-Bold.ttf) 
}
@font-face{
  font-family:'BebasNeue';
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/BebasNeue-Regular.ttf)
}

:root {
    --black: #000;
    --white: #fff;
    --white05: rgba(255,255,255,0.5);
    --md_darkblue:#001a2e;
    --md_darkblue09:rgba(0, 26, 46, 0.9);
    --md_darkblue08:rgba(0, 26, 46, 0.8);
    --md_darkblue01:rgba(0, 26, 46, 0.1);
    /* --md_pink:#c00043; */
    --md_pink:#ad0527;
    --md_pink08:rgba(192, 0, 67, 0.8);
    --md_pink08:rgba(192, 0, 67, 0.8);
    --md_violet:rgba(150, 14, 177);
    --md_violet08:rgba(150, 14, 177, 0.8);
    --md_violet05:rgba(150, 14, 177, 0.5);
    --md_violet03:rgba(150, 14, 177, 0.3);
    --md_black05:rgba(0, 0, 0, 0.5);
    --md_beige:#cbcec9;
    --md_greydark:#6e768b;


    --gradient: linear-gradient(
      45deg,
      var(--md_pink),
      var(--md_pink08),
      var(--md_violet),
      var(--md_darkblue01)
    );
}
/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--md_black05);
    background: #999;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
    background: #666;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
    background: #333;
  }

  input,
  textarea,
  button,
  select,
  a {
      -webkit-tap-highlight-color: transparent;
      
  }