:root {
  --color-primary-green: #286230;
  --color-primary-blue: #022672;
  --color-primary-teal: #00435f;
  --color-primary-purple: #1c012c;
  --color-primary-olive: #a9a550;
  --color-dark-bg: #122736;
  --color-text-light: #ffffff;
  --color-text-light-alt: #fbfaf6;
  --color-text-light-blue: #b5c7d9;
  --color-text-light-teal: #e9e8e4;
  --color-text-dark-olive: #485113;
  --font-inter: 'Inter', sans-serif;
  --font-jost: 'Jost', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-inter);
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

section {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

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

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }
}