/*
--- 01 TYPOGRAPHY SYSTEM

- 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
Paragraph-Defailt:1.6

Paragraph default: 1.6

- Letter spacing
0.5px
0.75px;


--- 02 COLORS

- Primary: #3B5BDB
- Tints:
#ebeffb
#d8def8
#768ce6

- Shades: 
#102137
#0c122c
#1e2e6e
- Accents:
- Greys

#888
#767676 
#6f6f6f
#555
#333

--- 05 SHADOWS


0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}
body {
  font-family: "poppins", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  background-color: #fbfbfc;
  /* ONLY WORKS IF THERE IS NOTHING ABSOLUTELY POSTION IN RELATION TO BODY */
  overflow-x: hidden;
}
.hero-heading {
  font-size: 6.4rem;
  line-height: 1.1;
  margin-top: 3.2rem;
  font-weight: 800;
}
.primary-heading {
  font-size: 3.6rem;
  font-weight: 800;
}
.secondary-heading {
  font-size: 1.8rem;
  font-weight: 700;
}
.paragraph-text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 1.1;
}
.subheading {
  color: #3b5bdb;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
}
.h--blue {
  color: #102137;
}
.grid {
  display: grid;
  row-gap: 3.2rem;
  column-gap: 3.2rem;
  /* margin-bottom: 9.6rem; */
}
.grid:last-child {
  margin-bottom: 0;
}
.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--5-cols {
  grid-template-columns: repeat(5, 1fr);
}
.grid--center-v {
  align-items: center;
}

.text-box-c {
  justify-content: center;
}

.hero-btn {
  display: flex;
  gap: 1.6rem;
}
.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  background-color: #102137;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.6rem 2.8rem;
  width: fit-content;

  /* ONLY FOR BTN */
  border: none;
  cursor: pointer;

  /* Put transition on original state */
  transition: all 0.4s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #102137;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #3b5bdb;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  box-shadow: inset 0 0 0 3px #fff;
}
.btn--outline:hover,
.btn--outline:active {
  background-color: #3b5bdb;
  /* border inside */
  box-shadow: inset 0 0 0 3px #3b5bdb;
}
.v--center {
  text-align: center;
  padding-bottom: 4.8rem;
}
.margin-bottom-sm {
  margin-bottom: 1.6rem;
}
.margin-bottom-l {
  margin-bottom: 4.8rem;
}
