/*
--- 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

####

Colors
Orange: #D19C5B
**used for buttons background, nav background, carousel arrows, cardbox titles**
Blue Primary: #02356A
**used for footer background, headings, normal nav texts color, icons color**
Grey: #F1F4F7
Black: #3C3C3C
**used for text on white background**
White: #fff
**used for text on the blue or orange backgrounds**


- 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
*/

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

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;

  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #3c3c3c;

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

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

.breadcrumb-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 6rem 12rem;
  background-color: #f1f4f7;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb-link {
  text-decoration: none;
  color: #646464;
  font-size: 1.4rem;
  font-weight: 500;
}
.breadcrumb-slash {
  font-size: 1.6rem;
}
.breadcrumb-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #02356a;
}

@media (max-width: 1100px) {
  .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
    line-height: 1.5;
  }

  .breadcrumb-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 4rem;
    background-color: #f1f4f7;
  }
}

@media (max-width: 700px) {
  .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
    line-height: 1.5;
  }

  .breadcrumb-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 2rem;
    background-color: #f1f4f7;
  }

  .breadcrumb-link {
    text-decoration: none;
    color: #646464;
    font-size: 1.1rem;
    font-weight: 500;
  }
  .breadcrumb-slash {
    font-size: 1.4rem;
  }
}
