@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800&display=swap");
/* 
--- 01 TYPOGRAPHY SYSTEM

-- Font sizes (px)

10 / 12 / 14 /16 /18 / 20 / 24 / 30 / 36 / 44 / 52  / 64 / 72 / 84 / 96

-- Font weights:

default: 400

-- Line heights:

default: 1;

--- 02 COLOURS

- PRIMARY #4b678a
- TINTS #f0f1f3 #e1e4e8
- SHADES rgb(194, 197, 207)
- ACCENTS
- GRAYS #333, #555; #888
- BLUES  #67778a #4b678a

--- WHITE SPACE

Spacing system
 2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128 


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

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}

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

/*****************************/
/* GENERAL REUSABLE  COMPONENTS */
/*****************************/

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 3rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 8rem;
  row-gap: 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;
}

.heading-primary {
  font-size: 6.8rem;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.heading-secondary {
  text-align: center;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #152434;
  margin-bottom: 3rem;
  /* margin-bottom: 9.6rem; */
}
.heading-tertiary {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.heading-card {
  color: #fbfbfb;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.subheading {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: #882035;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 1;
}

.paragraph {
  font-size: 2rem;
  line-height: 3.6rem;
  margin-bottom: 2rem;
}
.paragraph-card {
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 2.2rem;
}

.paragraph-2 {
  font-size: 2rem;
  line-height: 3.6rem;
  margin: -4rem 0 2rem 0;
}

.card-list {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.8rem;
  padding: 1rem;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.6rem 3.2rem;
  border-radius: 32px;
  transition: all 300ms;
  margin-top: 1.6rem;
}

.btn--full:link,
.btn--full:visited {
  background-color: #882035;
  color: #fff;
}
.btn--full:hover,
.btn--full:active {
  background-color: #6d1a2a;
  color: #fff;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #ebebeb;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #6d1a2a;
  /*Trick to add border inside*/
  /* box-shadow: inset 0 0 0 1px #fff; */
}
/* For when there are two buttons next to each other */
.margin-right-sm {
  margin-right: 1.6rem !important;
}
