:root {
  --container: min(1200px, 86vw);
  --blue: #2b92d0;
  --blue2: #2c3179;
  --text: #111;
  --muted: #666;
  --border: #e8e8e8;
}

p{
	font-size: 1.1em;
	line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 86vw);
  margin: 0 auto;
}

.home .section {
  padding-top: 45px;
}

.home .section--alt {
  background: #f6f8fb;
}