/* 
COLORS

- Primary: #e67e22
- Tints:
 #fdf2e9
 #fae5d3
- Shades: #cf711f
- Accents:
- Grays: 


*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* This makes 1rem = 10px */
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}

/*********************************/
/*GENERAL*/
/*********************************/

.heading-primary,
.heading-secondary {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.sub-heading {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  column-gap: 9.6rem;
  row-gap: 6.4rem;

  /* margin-bottom: 9.6rem; */
}

/* .grid:last-child {
  margin-bottom: 0;
} */

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.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);
}

.grid--center-v {
  align-items: center;
}

.link:link,
.link:visited {
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border: 1px solid transparent;
}

.button,
.button:link,
.button:visited {
  display: inline-block;
  /* background-color: #e67e22; */
  /* color: #fff; */
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 1rem;

  /* Only for .button */
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.button-main:link,
.button-main:visited {
  background-color: #cf711f;
  color: #333;

  transition: all 0.3s;
}

.button-main:hover,
.button-main:active {
  background-color: #e67e22;
  color: #fff;
}

.button-normal:link,
.button-normal:visited {
  background-color: #fff;
  color: #555;
}

.button-normal:hover,
.button-normal:active {
  background-color: #fdf2e9;

  /* Trick to add border inside */
  box-shadow: 0 0 0 3px #fff;
}

.button--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: flex-end;
  padding: 1.2rem;
}

.button--form:hover {
  background-color: #fff;
  color: #555;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}

.list-item {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  column-gap: 1.6rem;
  line-height: 1.2;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #e67e22;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(230, 0.125, 0.34, 0.5);
}

/*HELPER CLASSES*/

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.margin-right-small {
  margin-right: 1.6rem !important;
}

.container-text {
  text-align: center;
}
