/*
---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
h1: 1.05
paragraph: 1.6

- Letter spacing
small: 0.5px
medium: 0.75px

--- 02. COLORS

- Primary: #e67e22
- Tints: #fdf2e9
- Shades: #b8651b
- Accents:
-Greys:
#555

--- 05 SHADOWS

--- 06 BORDER-RADIUS
Default: 9px

--- 07 WHITESPACE

- Spacing System (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
      
      
      */
/****************/
/* GENERAL  */
/****************/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

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

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

/****************/
/* HEADING SECTION */
/****************/
.header {
  background-color: #fdf2e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.6rem;
  padding: 0 3.2rem;
  position: relative;
}

.logo {
  height: 10.4rem;
}


/********************/
/* Privacy Policy */
/********************/
.privacyHeader {
  background-color: #fdf2e9;
}
.privacyTopic {
  font-size: 3rem;
  padding: 5rem 3rem 3rem 5rem;
  text-decoration: underline;
}
.privacyParagraph {
  font-size: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 4rem;
  padding-left: 4rem;
  line-height: 1.5;
}

.header-2 {
  font-size: 2.5rem;
  padding: 2rem 0rem 0rem 5rem;
  text-decoration: underline;
}

.list-address {
  font-size: 1.5rem;
  line-height: 1.5rem;
  list-style-type: disc;
  padding-top: 1rem;
}

.list-address-container {
  padding-left: 5rem;
  padding-top: 1rem;
  line-height: 1.5rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}
/********************/
/* Privacy Policy */
/********************/

/****************/
/* REUSEABLE */
/****************/
.container {
  max-width: 120rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  row-gap: 4.8rem;
  column-gap: 4.8rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}
.grid--1-cols {
  width: 50rem;
}
.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);
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  color: #555;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 3.2rem;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.5;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.8;
}

.subheading {
  display: inline-block;
  color: #b8651b;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

strong {
  font-weight: 500;
}

.lists {
  font-size: 1.8rem;
  font-weight: 300;
  list-style: none;
  line-height: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.btn,
.btn:link,
.btn:visited {
  color: #fff;
  background-color: #e67e22;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 1.6rem 2.4rem;
  border-radius: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.cta--btn {
  align-self: end;
  padding: 1rem;
  background-color: #5c320e;
}

.cta--btn:hover {
  background-color: #fff;
  color: #5c320e;
  cursor: pointer;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
}

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

.btn--partial:hover,
.btn--partial:active {
  background-color: #fdf2e9;
  color: #333;
  box-shadow: 0 0 0 0.3rem #fff;
}

.link:link,
.link:visited {
  text-decoration: none;
  color: #e67e22;
  border-bottom: 2px solid currentColor;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: b8651b;
  border-bottom: 2px solid transparent;
}

.btn--mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.btn--nav-icon {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  color: #555;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 8px rgba(230, 125, 34, 0.5);
}

/****************/
/* HELPER SETTINGS SECTION */
/****************/
.margin-right-cl {
  margin-right: 3.2rem;
}

.align-center-v {
  align-items: center;
}

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

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