html,
body {
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.1;
  color: var(--color-title);
}


h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 800;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 400;
}

.container {
  max-width: min(80vw, 1280px);
  /* 75rem = 1200px if root font size is 16px */
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  /* Adds spacing relative to font size */
}

a {
  color: var(--color-page-text);
}

.section-title {
  line-height: 1.1;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  margin: .5rem 0;
  font-weight: 800;

  span {
    display: block;
  }
}

.text-center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section {}

.section__vspace {
  margin: 3rem 0;
}

#wrapper {
  padding-top: 0;

  nav.breadcrumb {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0px;
    overflow: hidden;
    text-overflow: ellipsis;

    ol {
      width: 96vw;
      margin-left: auto;
      margin-right: auto;

      li {
        &:after {
          margin: 0;
          color: black;
          position: relative !important;
          content: ">" !important;
          width: .6rem !important;
          height: .6rem !important;
          transform: unset !important;
          border: 0px !important;
          display: inline;
          font-size: 1rem !important;
        }

        &:last-child {
          color: black;
        }

        padding: .5rem;
        border-radius: 5px;
        text-overflow: ellipsis;
        overflow: hidden;
        display: inline-block;
        max-width: 80%;
        margin-right: 0 !important;
      }
    }
  }
}

.btn {
  padding: .5rem 1rem;
  border: none;
  border-radius: .4rem;
  background-color: var(--color-primary);
  color: white !important;

  &:hover {
    color: var(--color-secondary) !important;
  }
}

.btn__primary {
  background-color: var(--color-primary);
  color: var(--color-secondary);

  &:hover,
  &:focus,
  &:active {
    background-color: var(--color-primary-light);
    color: var(--color-secondary-light);
    text-shadow: 1 0 0 currentColor;
  }

  &:disabled {
    background-color: grey !important;
  }
}

.pull-right {
  text-align: right;
  float: right;
}

.btn__primary:active {
  color: white;
  text-shadow: 1 0 0 currentColor;
}

.btn__secondary {
  color: white;
}

.btn__icon {
  background: transparent;
  border: none;
}

.hometabs-nav {
  margin: auto;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;

  .nav-item {
    display: flex;
    justify-content: space-evenly;
    padding: .5rem 0;
    margin: .5rem 0;

    a {
      display: block;
    }
  }

  .nav-item:after,
  .nav-item:before {
    display: block;
    content: "//";
    font-weight: 800;
    letter-spacing: -5px
  }
}

.form-control-label {
  padding: 0.625rem 0;
  padding-top: 2rem;
  top: 0 !important;
}

nav {
  ul {
    list-style: none;
    padding-left: 1rem;
  }
}

ul.nav {
  list-style: none;
  padding-left: 1rem;
}

/* Mobile-first visibility utilities */
.hidden {
  display: none !important;
}

/* Hidden by default on mobile, shown on larger screens */
.hidden-xs {
  display: none;
}

@media (min-width: 576px) {
  .hidden-xs {
    display: block;
  }
}

/* Hidden by default on mobile, shown on medium screens */
.hidden-sm {
  display: none;
}

@media (min-width: 768px) {
  .hidden-sm {
    display: block;
  }
}

/* Hidden by default on mobile, shown on large screens */
.hidden-md {
  display: none;
}

@media (min-width: 992px) {
  .hidden-md {
    display: block;
  }
}

/* Visible only on mobile */
.visible-xs {
  display: block;
}

@media (min-width: 576px) {
  .visible-xs {
    display: none;
  }
}

/* Screen reader only - accessible but visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.copyright {
  font-size: .9rem;
  line-height: 1rem;
}

.hp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(496px, 1fr));
}

.hp-grid__3columns {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

ul.unstyled {
  list-style: none;
  padding-left: 0;
}