/* ===========================
   RESET + BASE TYPOGRAPHY
   (shared by every page)
=========================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700");

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #f3f6fb;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #c3d0e4;
}

img {
  width: 100%;
  overflow: hidden;
}

.hr {
  color: #ffffff
}

.hr-mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .hr-mobile-only {
    display: block;
  }
}

/* Site-wide page background (also rides along on .intro, an index.html section wrapper) */
html,
body,
.intro {
  font-family: 'Inter', sans-serif;
  background-color: #0b1a30;
  background-image: linear-gradient(to right, #0b1a30 0%, #1e3f6e 50%, #0b1a30 100%);
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}
