body {
  font-family: 'Lato', sans-serif;
  color: #333;
}

h1, .h1 {
  margin-bottom: 0;
  text-align: center;
  color: #00772d;
  font-weight: 600;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.25;
    padding-top: 1rem;
    margin-bottom: 0.75rem;
    color: #00772d;
    font-weight: 600;
    border-bottom: solid 1px #dd9928;
}

h5, .h5 {
  color: #00772d;
  font-weight: 600;
}

a {
  color: #337ab7;
  text-decoration: none;
}

.theme-text-green {color: #00772d !important;}
.theme-bg-green {background-color: #00772d !important;}
.theme-text-orange {color: #dd9928 !important;}
.theme-bg-orange {background-color: #dd9928 !important;}


.wrapper {
  position: relative;
}

.wrapper::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 410px;
  background: url("/img/headerTint.webp") top / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

.page-content {
  position: relative;
  background: #fff;
  color: #111;
  padding: 0;
  z-index: 2;
}

.page-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 100px;
  background: url("/img/bottomTint.webp") bottom / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.page-content>* {
  position: relative;
  z-index: 1;
}


.wrapper>* {
  position: relative;
  z-index: 1;
}

.site-header-spacer {
  height: 75px;
}

.navbar-brand img {
  width: 100px;
  height: auto;
}

.navbar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.navbar-nav .nav-link {
  color: white;
  margin-left: 1.5rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar>.container {
  align-items: start;
}

.footer li {
  color: #fff;
  font-weight: 600;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer-link:hover {
  color: #ddd;
}

.footer sub {
  bottom: 0;
  font-size: .5em;
}

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

.editor-text ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

/* Checkbox box */
.editor-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.15rem;
  height: 1.15rem;

  background-color: #f97316;
  /* orange */
  border-radius: 2px;

  /* Bootstrap check icon as mask */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.485 1.929a1.5 1.5 0 0 1 2.121 2.121l-8.25 8.25a1.5 1.5 0 0 1-2.121 0l-4.25-4.25a1.5 1.5 0 1 1 2.121-2.121l3.189 3.189 7.311-7.311z'/%3E%3C/svg%3E") center / 70% no-repeat;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.485 1.929a1.5 1.5 0 0 1 2.121 2.121l-8.25 8.25a1.5 1.5 0 0 1-2.121 0l-4.25-4.25a1.5 1.5 0 1 1 2.121-2.121l3.189 3.189 7.311-7.311z'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.header_text {
  font-weight: 600;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: .5rem 5% 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  line-height: 1.42857143;
  color: #555;
  font-size: 14px;
}

.getting-started-box {
  background: url("/img/goldbkgd.jpg") center / cover no-repeat;
  padding: 1rem 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1500px) {
  .wrapper::before {
      height: 410px;
      background: url("/img/headerTint.webp") top center no-repeat;
      background-size: cover;
    }
}

@media (min-width: 768px) {
  .site-header-spacer {
    height: 150px;
  }
}

@media (min-width: 992px) {

  .navbar-brand img {
      width: 200px;
      height: auto;
    }

  .navbar-nav {
    align-items: center;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: .25rem 0;
    margin: .5rem;
  }

  .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    font-weight: 700;
  }

  .navbar-nav .nav-item:not(:last-child)::after {
    content: "|";
    color: white;
    font-weight: 700;
    margin: 0 .25rem;
    white-space: nowrap;
  }

  .navbar-nav .nav-link {
    position: relative;
    margin-left: 0;
  }

  .navbar-nav .nav-link::after, .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #dd9928;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
  }

  .footer-nav li:not(:last-child)::after {
    content: "|";
    margin: 0 .25rem;
    font-weight: 700;
    color: #fff;
  }

  .footer { font-size: .9rem;}

  .footer-nav {
    flex-wrap: nowrap;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    min-width: 40%;
    justify-content: center;
  }

  .footer-logo {
    margin-left: 0px;
  }

  .site-header-spacer {
    height: 320px;
  }

  .page-content::before {
    content: "";
    height: 210px;
  }

  .header_text {
    margin: .5rem 10% 0;
  }
}

@media (max-width: 991px) {
  .footer-nav {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .footer-nav li::after {
    display: none;
  }

  .navbar-toggler,
  .navbar-collapse {
    background-color: #dd9928;
  }
}
