

:root{
  --blue-dark:#0b2d5c;
  --blue:#123a7a;
  --blue-mid:#1b4f9c;
  --blue-light:#eaf1fb;
  --blue-lighter:#f4f8fd;
  --ink:#12203d;
  --muted:#5b6b85;
  --white:#ffffff;
  --line:#dde6f3;
  --radius:16px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{
  scroll-behavior:smooth;
  
  overflow-y:scroll;
  scrollbar-gutter:stable;
}
body{
  font-family:'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;}