.container {
  max-width: 120rem;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.grid--2--col {
  grid-template-columns: repeat(2, 1fr);
}
.grid--4--col {
  grid-template-columns: repeat(auto-fit, minmax(28.2rem, 1fr));
  gap: 2.4rem;
}
.col-gap {
  column-gap: 2.4rem;
}
.mb-xsm {
  margin-bottom: 1rem;
}
.mb-sm {
  margin-bottom: 1.6rem;
}
.mb-lg {
  margin-bottom: 3.2rem;
}
.mb-md {
  margin-bottom: 2.4rem;
}
.mb-xlg {
  margin-bottom: 9.6rem;
}
.mt-xlg {
  margin-top: 19rem;
}
.mt-lg {
  margin-top: 9.6rem;
}
.center-text {
  text-align: center;
}
.heading-fourth {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e67e22;
}

.heading-primary {
  font-size: 5.6rem;
  font-weight: 700;
  /* color: #fdf2e9; */
  /* color: #eb984e; */
  color: #e67e22;
}

.heading-secondary {
  font-size: 4rem;
  font-weight: 700;
  color: #3e3e3e;
  letter-spacing: 1px;
}
.heading-tertiary {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3e3e3e;
  letter-spacing: 1px;
}
