#main_container {
  position: relative;
}

.nav-row {
  position: relative;
}

.side-tabs-container {
  position: absolute;
  top: 0;
  right: 0;
}

.safety-profile-button,
.feature-box-button {
  display: block;
  border-radius: 0.5em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.safety-profile-button {
  padding: 1.25em;
  margin-top: 3em;
  margin-bottom: 4em;
  background-color: var(--c-sled_orange);
  color: #ffffff;
  font-size: var(--fs-body);
}

/* .safety-profile-button,
.feature-box-button {
  display: block;
  border-radius: 0.5em;
  font-weight: 700;
}

.safety-profile-button {
  padding: 1.25em;
  margin-top: 3em;
  margin-bottom: 4em;
  background-color: var(--c-sled_orange);
  color: #ffffff;
  font-size: var(--fs-body);
  text-align: center;
} */

.feature-box-button {
  margin-top: auto;
  background-color: #ffffff;
  font-size: 0.9em;
  padding: 0.5em 1.5em;
}

.feature-box-button::after,
.safety-profile-button::after {
  display: block;
  content: "";
  width: 18px;
  height: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.5em;
}

.feature-box.light-blue {
  background-image: url("../img/box_light_blue.png");
}

.feature-box.orange {
  background-image: url("../img/box_light_orange.png");
}

.feature-box.dark-blue {
  background-image: url("../img/box_light_teal.png");
}

.dark-blue .feature-box-button::after {
  background-image: url("../img/arrow-dark-blue.png");
}

.light-blue .feature-box-button::after {
  background-image: url("../img/arrow-light-blue.png");
}

.orange .feature-box-button::after {
  background-image: url("../img/arrow-orange.png");
}

.safety-profile-button::after {
  background-image: url("../img/arrow-white.png");
}

.feature-box.light-blue {
  color: var(--c-sled_blue);
}

.feature-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1em;
  padding-bottom: 2.5em;
  row-gap: 2em;
  border-radius: 1em;
  margin: 0 1em;
}

.orange .feature-box-button {
  color: var(--c-sled_orange);
}

.light-blue .feature-box-button {
  color: var(--c-sled_light_blue);
}

.dark-blue .feature-box-button {
  color: var(--c-sled_blue);
}
