/*
---- 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:
    - Defaults: 1
    - Small: 1.05
    - Medium: 1.2
    - Paragraph default: 1.6

  - Letter-spacing:
    - 0.5px
    - 0.75px

--- 02 COLORS

  - Primary: #054dc1
  - Tints(Use the tints and shades generators: maketintsandshades.com): #fdf2e9 #efe7da 
  - Shades(check thiese on coolors.com):#7bdcb5 #007a5a #002626 rgb(140, 209,2)
  - Accents: #fcb900
  - Greys:
  #ddd
  #555
  #333
  #000

--- 03 IMAGES
  - For 'cleaning products' and 'cleaning' get from Unsplash.
  - For Faces on Testimonials get from uifaces.co

--- 04 ICONS

--- 05 SHADOWS
0 2.4rem 4.8rem rgba(0, 0, 0, 0.075)
--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITE SPACES

- 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;
}

body{
    font-family: 'roboto', sans-serif;
    font-size: 2rem;
    line-height:1;
    font-weight: 400;
    color: #000;
    overflow-x: hidden;
    background-color: #fafafa;
}


/****************************/
/* GENERAL REUSEABLE COMPONENTS */
/****************************/

.container {
  max-width: 140rem;
  padding: 0 3.2rem;
  margin: 0 auto;
} 

.grid {
  display: grid;
  column-gap: 4.8rem;
  row-gap: 2.4rem;
}

/* .grid:not(:last-child) {
  margin-bottom: 9.6rem;
} */


/* COLUMNS */
.grid--2-cols {
  /*You can also write the below as: grid-template-column: 1fr 1fr; */
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  /*You can also write the below as: grid-template-column: 1fr 1fr 1fr; */
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  /*You can also write the below as: grid-template-column: 1fr 1fr 1fr 1fr; */
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  /*You can also write the below as: grid-template-column: 1fr 1fr 1fr 1fr; */
  grid-template-columns: repeat(5, 1fr);
}

/* ROWS */
.grid--2-rows{
  grid-template-rows: repeat(2, 1fr);
}


.grid--center-v {
  align-items: center;
}

.grid-column-gap--6{
  column-gap: 6rem;
}

.grid--center-h {
  justify-content: center;
}

/* HEADINGS */
.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
}

.heading-primary {
  color: #fff;
  font-size: 5.2rem;
  line-height: 1.05;
  
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
}
.subheading {
  display: block;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 700;
  color: #054dc1;
  margin-bottom: 1.6rem;
}


/* BUTTONS */
.btn, .btn:link, .btn:visited{
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 1.4rem 4rem;
  border-radius: 2.5px;
  transition: all .2s;
  font-size: 1.6rem;
 
}

.btn:hover{
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 20%);

}

.btn-white{
  background-color: #fff;
  color: #25282a;
  z-index: 4;

}

.btn-form{
  border-radius: 2.5px;
  border: none;
  background-color: #054dc1;
  width: 100%;
  cursor: pointer;
}

