/* 
----01-TYPOGRAPHY SYSTEM
  FONT WEIGHT:
  default: 400
  500
  600
  700

  LINE SPACING:
  -0.5
  0.75
  
  
  
  LINE HEIGHT:
    default:1 
    1.05
    paragraph default: 1.6
  
  FONT SIZE SYSTEM (px)
      10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

----02-COLORS
  -primary color: #e67e22
  -tints: 
  #fdf2e9
  #fae5d3
  #eb984e
  -shades: 
  #cf711f
  #45260a
  -accent: 
  -grays: #555
          #333
          #6f6f6f

---- 05-SHADOWS

---- 06-BORDER-RADIUS
default: 9px
---- 07-WHITESPACE
  SPACING SYSTEM (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

/* ************************** */
/* GENERAL REUSABLE COMPONENTS */
/* ************************** */

.primary-heading,
.secondary-heading,
.step-heading {
  color: #333;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.primary-heading {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.secondary-heading {
  font-size: 4.4rem;
  margin-bottom: 9.6rem;
  line-height: 1.2;
}

.s-heading {
  display: block;
  font-size: 1.6rem;
  color: #cf711f;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  line-spacing: 0.75px;
}

.step-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.button,
.button:link,
.button:visited {
  font-size: 2rem;
  display: inline-block;
  padding: 1.6rem 3.2rem;
  border-radius: 0.9rem;
  text-decoration: none;
  /* Put transition on the orginal state always. */
  transition: all 1s;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.button--full:link,
.button--full:visited {
  background-color: #e67e22;
  color: #fff;
}

.button--full:hover,
.button--full:active {
  background-color: #cf711f;
}

.button--outline:link,
.button--outline:visited {
  background-color: #fff;
  color: #555;
}

.button--outline:hover,
.button--outline:active {
  background-color: #fdf2e9;
  /* Trick to make a border inside */
  box-shadow: inset 0 0 0 0.3rem #fff;
}

.button--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.button--form:hover {
  background-color: #fff;
  color: #555;
}
.link:link,
.link:visited {
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

*:focus {
  border: none;
  box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.5);
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  margin-bottom: 9.6rem;
}

.grid:last-child {
  margin-bottom: 0;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid-center-v {
  align-items: center;
}
.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);
}
/* HELPER/ SETTING CLASSES */

.center-text {
  text-align: center;
}

.margin-button-right {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

strong {
  font-weight: 500;
}
