/*
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

---  COLORS

- Primary: 
#1a7cdb

#1d75cd

- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- BORDER-RADIUS

Default: 8px

- 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%;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-family: "Inter";
  color: #555;
  overflow-x: hidden;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 6.4rem;
}

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

.grid--3-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid--4-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

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

.heading-primary {
  font-size: 5.6rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  color: #333;
}

.heading-secondary {
  font-size: 4.8rem;
  margin-bottom: 8rem;
  color: #333;
}

.heading-tertiary {
  font-size: 3.6rem;
  font-weight: 700;
  color: #333;
}

.subheading {
  color: #1a7cdb;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 0.75px;
}

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

.btn:link,
.btn:visited {
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  font-size: 1.8rem;
  text-decoration: none;
  display: inline-block;
  background-color: #1a7cdb;
  color: #fff;
  font-weight: 700;
  border: none;

  margin-right: 1.6rem;
  cursor: pointer;
  transition: 0.25s;
}

.btn:hover,
.btn:active {
  background-color: #1d75cd;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #333;
  transition: 0.25s;
  border: 2px solid #fff;
}

.btn--outline:hover,
.btn--outline:active {
  border: 2px solid #1a7cdb;
}
