/*

--- 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: #9E9460
- Tints:
#b1a980 20%
#c5bfa0 40%
#d8d4bf 60%
- Shades: 
#4f4a30 50%
#201e13 80%
#090203 90%



- Text:
#212529
#343a40

- Tags:
#51cf66

- Greys:
#888
#767676 (lightest grey allowed on white)
#555
#333
#6f6f6f (lightest grey allowed on #fdf2e9)

--- 05 SHADOWS
box-shadow: 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

/*

--- RESET STYLES

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

/*

--- BASE STYLES

*/
html {
  /* font-size: 10px; */
  /* Percentage of user's font-size settings */
  font-size: 62.5%;
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}

body {
  font-family: 'HelveticaNeueLTPro-Cn', Arial, Helvetica, sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;

  /* Only works if there is nothing absolutely positions in relation to the body */
  /* overflow-x: hidden; */
}

@font-face {
  font-family: 'HelveticaNeueLTPro-Cn';
  src: url(../Font/4c9a47c651b614e757056aaa06aa0138.woff2) format('woff2'),
    url(../Font/4c9a47c651b614e757056aaa06aa0138.woff) format('woff'),
    url(../Font/4c9a47c651b614e757056aaa06aa0138.ttf) format('truetype'),
    url(../Font/4c9a47c651b614e757056aaa06aa0138.svg) format('svg');
}

.container {
  padding: 0 4rem;
  max-width: 150rem;
  margin: 0 auto;
}

/* SECTION HEADER */

.section-header {
  font-size: 3rem;
  font-weight: 400;
  color: #090203;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-bottom: 3.6rem;
}

h2,
h3 {
  letter-spacing: 0.4rem;
}

h2 {
  font-size: 3.6rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 300;
}

/* SWIPER */

.swiper--1,
.swiper--2 {
  width: 100%;
  height: 100%;
}

/* GRID */

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

.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);
}

/* Reusable styles */

.uppercase-text {
  text-transform: uppercase;
}

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

/* Common styles for headers */

.blog-header,
.roots-box--header,
.apotheke-box--header {
  font-size: 2rem;
}

/* Common styles for text */
.common-text {
  font-size: 1.6rem;
}

/* Common styles for links */
.section-btn,
.product-link,
.roots-box--link,
.apotheke-box--link {
  text-decoration: none;
  font-size: 1.6rem;
  color: #090203;
  border: solid 2px #9e9460;
  padding: 1.5rem;
  width: 20rem;
}
