/* 

--- 01 TYPGRAPHY 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
1.05
Paragraph Default 1.6

- Letter spacing:

--- 02 COLORS

- Primary:
#a17444;

- Tints:
#f6f1ec

- Shades: 


- Greys: 
#333
#555

--- 05 SHADOWS
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);


--- 06 BORDER-RADIUS


--- 07 WHITE SPACE

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; */
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #333;
  overflow-x: hidden;
}

.primary-heading,
.secondary-heading,
.small-heading,
.main-title {
  font-weight: 700;
  letter-spacing: -0.7px;
  color: #333;
}

.primary-heading {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.secondary-heading {
  font-size: 4.4rem;
  margin-bottom: 8rem;
}

.subheading {
  color: #a17444;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
/************************************/
/* GRIDS */
/************************************/

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 9.6rem 6.4rem;
}

.grid--2-cols {
  grid-template-columns: 1fr 1fr;
}

.grid--3-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid--4-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/************************************/
/* LINKS  */
/************************************/

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  transition: 0.2s all;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-right: 1.6rem;
}

.btn--primary:link,
.btn--primary:visited {
  background-color: #a17444;
  color: #fff;
}

.btn--primary:hover,
.btn--primary:active {
  background-color: #815d36;
}

.btn--secondary:link,
.btn--secondary:visited {
  background-color: #fff;
  color: #555;
}

.btn--secondary:hover,
.btn--secondary:active {
  background-color: transparent;
  box-shadow: inset 0 0 0 3px #fff;
}

/*  */

.mb-large {
  margin-bottom: 6.4rem !important;
}

.mb-small {
  margin-bottom: 3.2rem !important;
}

.border {
  width: 100%;
  height: 1px;
  background-color: #eee;
}
