/* 

--- 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
  meduim: 500
  semi-bold: 600
  Bold: 700

- Line heights:
  Default: 1
  small: 1.05
  meduim: 1.2
  Paragraph default 1.6
  Large: 1.8

-- Letter spacing
   -0.5px
   0.75px 

--- 02 COLORS

- Primary: #007bff
- Tints: 
#e0f2ff
#cce5ff
#99ccff

- Shades: 
#0056b3
#003f7f;

- Accents: #28a745;
- Greys: 
#f8f9fa
#e9ecef
#dee2e6
#adb5bd
#6c757d
#343a40

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

--- 06 BORDER-RADIUS
  DEFAULT: 9px
  11px
--- 07 WHITESPACE
- SPACING SYSTEM (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/
:root {
  --background-color: #000000;
  --background-color-hover: #fff;
  --background-color-sections: #fff;
  --text-color: #fff;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */
  font-size: 62.5%;
  overflow-x: hidden;

  /* DOES NOT WORK ON SFARI AND MICROSOFT EDGE */
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;

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

/* ****************** */
/* GENERAL REUSEABLE COMPONENTS */
/* ****************** */

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

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  /* margin-bottom: 9.6rem; */
}

/* .grid:last-child {
  margin-bottom: 0;
} */

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.heading-primary,
.heading-secondary {
  font-weight: 600;
  color: #343a40;
  letter-spacing: -0.5px;
}
.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

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

/* BUTTONS OF HERO START */
.btn,
.btn:link,
.btn:visited {
  font-size: 2rem;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for the form Button itself */
  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 {
  color: #fff;
  background-color: var(--background-color);
}

.btn--full:hover,
.btn--full:active {
  color: #000000;
  background-color: var(--background-color-hover);
  outline: 1px solid rgba(0, 0, 0, 0.5);
}

/* BUTTONS OF HERO END */

*:focus {
  outline: none;
  /* outline: 4px dotted #007bff; */
  /* outline-offset: 8px */
  box-shadow: 0 0 0 0.8rem rgba(0, 0, 0, 0.5);
}

/* HELPER/SETTINGS CLASSES */

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

strong {
  font-weight: 500;
}
