/* 
  SPACING SYSTEM (px)
  2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 /
    64 / 80 / 96 / 128

  FONT SIZE SYSTEM (px)
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 
  / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*:focus{
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.567);
}

.cta *:focus{
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.536);
}

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; 
}

/* ***************** */
/* Generic Reusable Section */
/* ***************** */
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 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--centered-v {
  align-items: center;
}

.primary-heading,
.heading-secondary,
.heading-tertiary {
  line-height: 1.05;
  color: #333;
  letter-spacing: -1.4px;
}

.heading-primary {
  font-size: 5.2rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
}

.subheading {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #cf711f;
  font-weight: 600;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 7px;
  /* Put transition on original "state" */
  transition: all 0.3s;
}

.btn--primary:link,
.btn--primary:visited {
  background-color: #e67e22;
}

.btn--primary:hover,
.btn--primary:active {
  background-color: #cf711f;
}

.btn--secondary:link,
.btn--secondary:visited {
  background-color: #fff;
  color: #555;
}

.btn--secondary:hover,
.btn--secondary:active {
  background-color: #fdf2e9;
  box-shadow: 0 0 0 3px #fff;
}

.btn-cta{
  align-self: end;
  padding: 1.2rem;
  border: none;
  background-color: #45260a;
  cursor: pointer;
}

.btn-cta:hover{
  background-color: #fff;
  color: #555;
}

.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md{
  margin-bottom: 4.8rem;
}

.padding-bottom-md{
  padding-bottom: 6.4rem;
}

.center--text {
  text-align: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.list li {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 1.6rem;
}

