.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2%;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 2px solid black;
  
  user-select:           none;
  -webkit-touch-callout: none;
  -webkit-user-select:   none;
  -khtml-user-select:    none;
  -moz-user-select:      none;
  -ms-user-select:       none;
} .footer .pill {
  display: flex;
  height: 1.6rem;
  width: 18svw;
  border-radius: 200px;
  padding: 8px;
  gap: 10px;
  align-items: center;
  justify-content: start;
  color: var(--primary-color);
  line-height: 1;
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    color 0.15s ease;
} .footer .pill:hover {
  cursor: pointer;
  background-color: var(--accent-color);
  color: var(--background-color);
  box-shadow: 4px 4px 10px var(--shadow-color);
} .footer .pill--noEffect {
  pointer-events: none;
} .footer .pill:hover .icon {
  filter: invert(100%);
} .footer .pill .icon {
  flex-shrink: 0;
  height: 100%;
  width: auto;
  transition:
    filter 0.25s ease;
} .footer .pill .icon img {
  width: 100%;
  height: 100%;
} .footer .pill .label {
  display: flex;
  height: 100%;
  width: auto;
  justify-content: center;
  align-items: center;
} .footer .pill .label p {
  all: unset;
  font-weight: 600;
  font-size: var(--btn-text);
  align-self: center;
  color: inherit;
}

.sub-heading {
  all: unset;
  font-weight: 600;
  font-size: var(--title3-text);
  margin-top: 1rem;
  align-self: flex-start;
}


@media (max-width: 600px) {
  .footer {
    box-sizing: border-box;
  } .footer .pill {
    align-items: center;
    width: fit-content;
    padding-left: 1rem;
    padding-right: 1rem;
  }  .footer .pill .label {
    display: none;
  }  .footer .pill .label--location {
    display: contents;
  }
}
