/*
--- 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
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS



- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#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
*/
/* 
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  /* font-size: 62.5%;
}

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

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

.container-c {
  display: block;
  margin-top: 0;
  padding:0 0 0 0;
  max-width: 90%;
  max-height: auto;

  margin-left:  auto;
  margin-right: auto;
  /* overflow-x: hidden; */
}

.flex-su {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items:center;
  margin: auto;
  max-width: 80vw;
  /* margin-bottom: 9.6rem; */
}

.flex {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items:center;
  flex-direction: column;
  /* 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);
}



.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
  /* color: #45260a; */
  /* color: #343a40; */
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 9.6rem;
}

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

.heading-tertiary {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 2.4rem;
  
}
.heading-tertiary-c {
  font-family:'Times New Roman', Times, serif;
  color: #040F28;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}

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





.step-img-box-left{
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-img-box-right{
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-img{
  max-width: 40vw;
  max-height: 30vh;
  align-self: center;
}

.step-text-box{
  max-width: 50vw;
}

.prow-1, .prow-2{
  display: flex;
  gap: 2rem;
}