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

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

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}

.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--center-v {
  align-items: center;
}

.grid--center-h {
  justify-content: center;
  text-align: center;
}

.section {
  padding: 9.6rem 0;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  margin: 0;
  font-weight: 700;
  color: #333;
  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: 8rem;
}
.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

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

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  color: #fff;

  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  transition: all 0.3s;
}

.btn--full:link,
.btn--fulll:visited {
  background-color: #e67e22;
  color: #fff;
}

.btn--full:hover,
.btn--fulll:active {
  background-color: #cf711f;
}

.btn--form {
  background-color: #e67e22;
  color: #45260a;
  box-shadow: inset 0 0 0 1px #45260a;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #45260a;
  color: #fdf2e9;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;

  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}

.icon {
  color: #f5cba7;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgb(230, 126, 34, 0.5);
}

/***** ACCORDEON *****/

.accordion {
  width: 100%;
  margin: 9.6rem auto;

  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.accordion .item {
  box-shadow: 0 0 3.2rem rgba(0, 0, 0, 0.1);
  border-radius: 9px;
}

.accordion .item-header {
  padding: 2.4rem;
  font-size: 2.4rem;
  font-weight: 500;
  cursor: pointer;
}

/*** Hidden Box ***/
.accordion .hidden-box {
  padding: 0 2.4rem;
  background-color: white;
  overflow: hidden;
  word-wrap: break-word;

  transition: all 0.3s ease-out;
  max-height: 0;
}

.accordeon .hidden-box p {
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

.accordeon .hidden-box ul {
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/*** Adjustments for open item ***/

/* "Border top" width transition from left to right.  */
.accordion .item::before {
  content: "";
  background-color: #e67e22;
  display: block;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;

  transition: all 0.3s ease-out;
  height: 0;
  width: 0;
}

.accordion .item.open::before {
  height: 0.4rem;
  width: 100%;
}

.accordion .item.open {
  padding-bottom: 3.2rem;
}

.accordion .item.open .item-header {
  color: #e67e22;
}

/**** HELPER/SETTINGS CLASSES ****/
.margin-right-sm {
  margin-right: 1.6rem !important;
}

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

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.margin-bottom-lg {
  margin-bottom: 9.6rem !important;
}

.center-text {
  text-align: center;
}
