/********************************************************/
/*  GLOBAL DESIGN SYSTEM */
/********************************************************
1. TYPOGRAPHY 
#6d8c3cz
---> 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

*********************************************************
2. COLORS 

---> PRIMARY: #6d8c3c

---> TINTS (lighter versions):
6D8C3C	7C9850	8AA363	99AF77	
A7BA8A	B6C69E	C5D1B1	D3DDC5	
E2E8D8	F0F4EC	FFFFFF

---> SHADES (darker versions): 
6D8C3C	627E36	577030	4C622A	
415424	37461E	2C3818	212A12	
161C0C	0B0E06	000000

---> ACCENTS:

---> GREYS:

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555

*********************************************************
3. IMAGES
*********************************************************
4. ICONS
*********************************************************
5. SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

*********************************************************
6. BORDER-RADIUS

Default: 9px
Medium: 11px

*********************************************************
7. WHITESPACE (spacing system (px))

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

*********************************************************
*/

/**************************/
/*  GLOBAL RESET */
/**************************/

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

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(109, 140, 60, 0.502); /* show on keyboard press */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.8;
  font-weight: 400;
  color: #0b0e06;
  overflow-x: hidden;
}

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

/* GENERIC CONTAINER (base container for sections content) */
.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.section {
  padding: 8.6rem 0;
}

/*******************/
/* GRID */
/*******************/

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

/*******************/
/* HEADINGS */
/*******************/

.heading-primary,   /* <h1> */
.heading-secondary, /* <h2> */
.heading-tertiary   /* <h3> */ {
  font-weight: 700;
  color: #7c9850;
  letter-spacing: -0.5px;
}

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

.heading-secondary {
  font-size: 4.2rem;
  line-height: 1.3;
  margin-bottom: 6.4rem;
}

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

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

/*******************/
/* BUTTONS & LINKS */
/*******************/

.btn, /* <button class=btn> */
.btn:link, /* <a href='#' class='btn'> */
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #6d8c3c;
  color: #f0f4ec;
}

.btn--full:hover,
.btn--full:active {
  background-color: #f0f4ec;
  color: #0b0e06;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #f0f4ec;
  color: #0b0e06;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #6d8c3c;
  color: #f0f4ec;
  box-shadow: inset 0 0 0 3px #6d8c3c; /* Trick to add border inside */
}

.btn--form {
  background-color: #212a12;
  color: #d3ddc5;
  align-self: start;
  padding: 1.2rem 2.4rem; /* set padding=== input elements' padding */
}

.btn--form:hover {
  background-color: #d3ddc5;
  color: #212a12;
}

/* Generic link element (<a>) */
.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor; /* === text-color */
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent; /* avoid page "jumpings' */
}

/*******************/
/* LISTS */
/*******************/

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #e67e22;
}

/*******************/
/* HELPERS/SETTINGS */
/*******************/

.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}

strong {
  font-weight: 500;
}
