/* 
--- 01 TYPOGRAPHY SYSTEM

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

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

- Line heights
Default: 1
Small: 1.05
Paragraph defauld: 1.6

- Letter spacing
-1.05px
0.75px

--- 02 COLORS

- Primary: #407DDA
- Tints: #000023
    Lighter: #33334f
- Shades: 
- Accents: #eb984e
Darker accent:
  #e67e22
  #cf711f
- Greys: #EDEDED
  Darker:
  #d5d5d5
  #ced4da
  #868e96
--- 03 SHADOWS

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

--- 04 BORDER RADIUS

Default: 9px
Medium: 11px

--- 05 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;
}

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

/*******************************/
/* GENERAL REUSABLE COMPONENTS */
/*******************************/
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 4.8rem 3.2rem;
}

.section-box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

span {
  font-weight: 600;
  letter-spacing: 1px;
}

/* GRID ELEMENTS */
.grid {
  display: grid;
  gap: 6.4rem;
}

.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);
}

/* HEADING */
.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #ededed;
}

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

.heading-secondary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.heading-tertiary {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.7px;
  margin-bottom: 3.2rem;
  text-transform: uppercase;
}

/* COLORS */
.dark {
  color: #33334f !important;
}

.light {
  color: #ededed;
}

.color {
  color: #cf711f;
}

.dark-grey {
  color: #868e96;
}

.why-section,
.content-section,
.footer {
  background-color: #ededed;
}

/* ICONS ELEMENT */
.icon {
  height: 3.2rem;
  width: 3.2rem;
  flex-shrink: 0;
}

.point {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  /* color: #ededed; */
  /* margin-bottom: 2.4rem; */
}
