/*
--- 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
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #FAC213
- Secondary:  #F77E21
- Tints: #fef3d0


- Shades: #d88427


- 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
*/
/* ******************* */
/* GENERAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;

  scroll-behavior: smooth;
}
body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #333;
  position: relative;
}
ion-icon {
  width: 30px;
  height: 30px;
}
.container {
  width: 80vw;
  margin: 0 auto;
}
.grid {
  display: grid;
}
.grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.grid-center {
  justify-items: center;
  align-items: center;
}
.cta-btn:link,
.cta-btn:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #322704;
  background-color: #fac213;
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 11px;
  transition: all 0.3s;
}
.cta-btn:hover,
.cta-btn:active {
  background-color: #d97706;
  color: #fff;
}
.title-secondary {
  text-align: center;
  font-size: 3rem;
}
.social-img {
  width: 3rem;
}
.hidden {
  display: none;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}
.section {
  transition: transform 1s, opacity 1s;
}
