/* 
--- TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Bold: 800

- Line heights
Default: 1
Paragraph default: 1.6

- Letter spacing
-0.5px

--- COLOURS

- Primary:
#099268

- Tints:
#e6f4f0

- Shades:
#077553

- Greys:
#333
#999

--- SHADOWS


--- BORDER-RADIUS

Default: 9px

--- WHITESPACE

– Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Aleo", serif;
  line-height: 1;
  font-weight: 400;
  color: #333;
  overflow-x: hidden;
}

/*******************************/
/* GENERAL REUSABLE COMPONENTS */
/*******************************/

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--center-v {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #099268;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-family: "Lato", sans-serif;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-family: "Lato", sans-serif;
  font-size: 4.4rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6.4rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #099268;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #077553;
}

.list,
.ordered-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.ordered-list-item {
  font-size: 2rem;
  line-height: 1.6;
  padding-left: 0.8rem;
}

.list {
  list-style: none;
}

.list-item {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.6;
}

.link:link,
.link:visited {
  display: inline-block;
  line-height: 1;
  color: #099268;
  /* text-decoration: none; */
  /* border-bottom: 1px solid currentColor; */
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #077553;
  /* border-bottom: 1px solid transparent; */
}

.link-title {
  text-decoration: none;
}

/******************/
/* HELPER CLASSES */
/******************/

.margin-bottom-sm {
  margin-bottom: 3.2rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.margin-bottom-lg {
  margin-bottom: 6.4rem !important;
}

.center-text {
  text-align: center;
}

.white {
  color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

strong {
  font-weight: 700;
}
