/* =============================================
   BASE & RESET
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --yellow:     #F5C518;
    --dark-blue:  #1B2A4A;
    --mid-blue:   #2E4A7A;
    --light-blue: #3B6CB7;
    --white:      #ffffff;
    --text-gray:  #cccccc;
    --light-gray: #f2f2f2;
    --font:       'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--dark-blue);
    background: var(--white);
}
/* Visually hidden but accessible to screen readers and search crawlers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.overlay_loader{
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
  z-index: 9999;
}

.overlay_loader i{
  color: var(--yellow);
  font-size: 48px;
}
