/******************
 Init 
 ******************/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* set font size default to 10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}

/* **************
General Components
*****************/

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;

  /* background-color: blueviolet; */
}

/******* Grids *****/

.grid {
  display: grid;
  gap: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--center-v {
  align-items: center;
}

.grid--center-h {
  justify-items: center;
}

/* ***** Headings ***** */

.heading-primary {
  font-size: 5.2rem;
  color: #fff;
  line-height: 1.2;
  padding-bottom: 2.4rem;
}

.heading-secondary {
  font-size: 4.4rem;
  font-weight: 700;
  color: #333;
}

.heading-tertiary {
  font-size: 3rem;
  font-weight: 600;
}

.sub-heading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #147280;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

/* ****** Buttons ****** */

.btn,
.btn:link,
.btn:visited {
  /* Button element */
  display: inline-block;
  font-size: 2rem;
  border: none;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  cursor: pointer;
  color: #fff;

  background-color: #147280;
  /* link element */
  text-decoration: none;

  /* transitions */
  transition: all 0.3s;
}

.btn:hover,
.btn:active {
  background-color: #1098ad;
}

/******* Margins *******/

.margin-bottom-sm {
  margin-bottom: 2.4rem !important;
}
.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}
.margin-bottom-lg {
  margin-bottom: 9.6rem !important;
}

/* ***** Helpers */

.text-align-center {
  text-align: center;
}

.no-marg-left {
  margin-left: 0 !important;
}
.no-marg-right {
  margin-right: 0 !important;
}

/* 

--- 01 TYPOGRAPHY SYSTEM

- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights:
Default: 400
medium: 500
Dark: 600
Darkest: 700

Font Size:

1.6
1.8
2.0
2.4
3.6
5.2

- Line Heights:
Default: 1
small: 1.2
medium :1.6
large :


SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

---02 Colours

- Primary #0b7285
- Tints: 
- Shades: 
- Accents:
- Greys:#fff #f1f3f5 #ced4da  #555 #333 #000000  #f8f9fa

---05 Shadows

---06 Border Radius
default 9px
other 11px

---07 White Spacer


-letter spacing
0.5px
0.75px

*/
