:root {
  --dark-gray: #012030;
  --brand-blue: #04466a;
  --sat-blue: #0e649a;
  --darkest-blue: #00131d;
  --darker-blue: #012030;
  --dark-blue: #073d5d;
  --medium-blue: #076fa7;
  --sat-blue: #0e649a;
  --light-blue: #91d7fc;
  --lighter-blue: #cfeffe;
  --pale-blue: #e7f7fe;
  --orange: #fdb445;
  --l-gray: #707070;
  --border: #dae8ee;
}
body {
  font-family: "Work Sans", sans-serif;
  color: var(--dark-gray);
}
.img-fluid {
  width: 100%;
}
/* Background colors */
.bg-dk-blue {
  background-color: var(--darkest-blue);
  color: #fff;
}
.bg-dr-blue {
  background-color: var(--darker-blue);
  color: #fff;
}
.bg-d-blue {
  background-color: var(--dark-blue);
  color: #fff;
}
.bg-m-blue {
  background-color: var(--medium-blue);
  color: #fff;
}
.bg-sat-blue {
  background-color: var(--sat-blue);
  color: #fff;
}
.bg-l-blue {
  background-color: var(--light-blue);
}
.bg-lr-blue {
  background-color: var(--lighter-blue);
}
.bg-p-blue {
  background-color: var(--pale-blue);
}
.bg-m-blue .overline:before {
  content: "";
  background-color: var(--light-blue);
  display: block;
  width: 2em;
  height: 5px;
  margin-bottom: 0.5rem;
}
/* Text colors */
.t-d-gray {
  color: var(--dark-gray);
}
.t-dr-blue {
  color: var(--darker-blue);
}
.t-d-blue {
  color: var(--dark-blue);
}
.t-m-blue {
  color: var(--medium-blue);
}
.t-l-blue {
  color: var(--light-blue);
}
.t-lr-blue {
  color: var(--lighter-blue);
}
.t-orange {
  color: var(--orange) !important;
}
.t-white {
  color: #fff;
}
/*  Text */
a,
a:visited {
  color: var(--dark-blue);
}
a:hover {
  color: var(--darker-blue);
}
.a-white a,
.a-white a:visited {
  color: #fff;
  text-decoration: none;
}
h1 {
  color: #fff;
}
h2 {
  color: var(--dark-blue);
}
h3 {
  color: var(--dark-blue);
}
.display-1,
h1 {
  font-size: 90px;
  font-weight: 900;
  text-transform: uppercase;
}
.display-2,
h2 {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}
.display-3,
h3 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}
.display-4,
h4 {
  font-size: 25px;
  font-weight: regular;
  line-height: 1.1;
  text-transform: uppercase;
}
.display-5,
h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.display-6,
h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}
.display-smaller {
  font-size: 0.7rem !important;
}
.uppercase {
  text-transform: uppercase;
}
sup {
  font-size: 0.5em;
  text-transform: lowercase;
  line-height: 1;
}
.t-bold {
  font-weight: 700;
}
t-bolder {
  font-weight: 900;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
/* Forms */
.form-control {
  border-color: var(--darker-blue);
  border-radius: 0;
}
/* Spacing Utilities */
.py-5 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.pty-3 {
  padding-top: 2rem;
}
/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.75);
}
.site-header .navbar-brand img {
  max-width: 200px;
  height: auto;
}
.site-header.scrolled {
  background-color: #fff !important;
  transition: background-color 200ms linear;
}
/* Navbar */
.top-nav {
  text-transform: uppercase;
  background-color: var(--brand-blue);
  padding: 0.5rem 0;
  color: #fff;
}
.top-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 75%;
  font-weight: 700;
}
.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.navbar {
  font-size: 0.9rem;
}
.navbar-nav {
  margin: 0;
}
.navbar-nav .nav-link {
  color: var(--dark-blue);
}
.dropdown-menu {
  border-radius: 0;
  border: none;
}
@media screen and (min-width: 992px) {
  .navbar li.show {
    background-color: var(--sat-blue);
    color: #fff;
  }
  .navbar li.show a {
    color: #fff;
  }
  .navbar .nav-item:not(:last-child) {
  }

  .dropdown-toggle::after {
    display: none;
  }

  .dropdown-menu {
    margin-top: 0;
    background-color: var(--sat-blue);
  }
  .dropdown-menu li {
    padding: 0 10px;
  }
  .dropdown-item {
    padding: 5px 5px 5px 5px;
    color: #fff !important;
    font-size: 90%;
    border-bottom: 1px solid var(--lighter-blue);
    background-color: transparent;
  }
  .dropdown-item:hover {
    background-color: var(--dark-blue);
  }
}
.navbar-toggler {
  border: none !important;
}

.animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon span {
  background: var(--dark-blue);
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon span:nth-child(1) {
  top: 0px;
}

.animated-icon span:nth-child(2),
.animated-icon span:nth-child(3) {
  top: 10px;
}

.animated-icon span:nth-child(4) {
  top: 20px;
}

.animated-icon.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.page-intro {
  background-color: var(--lighter-blue);
}
.page-intro-content :first-child:before {
  content: "";
  background-color: var(--light-blue);
  display: block;
  width: 6rem;
  height: 5px;
  margin-bottom: 0.5rem;
}

.page-intro .parent-link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0;
}
.page-intro-content .page-intro-title {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--brand-blue);
  line-height: 1.1;
}

/* Buttons */
.btn-primary,
.btn-primary:visited {
  background-color: var(--medium-blue);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 0;
  padding: 7px 17px;
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--brand-blue);
}
.btn-outline-lblue {
  border: 1px solid var(--light-blue);
  border-radius: 0;
  font-size: 12px !important;
  text-transform: uppercase;
  padding: 7px 17px;
}
.btn-outline-lblue:hover {
  background-color: var(--light-blue);
  color: var(--dark-blue);
}
/* Tables */
.about-table {
  background: transparent;
  color: #222222;
  width: 100%;
}
.about-table tr {
  border-bottom: 1px solid var(--border);
}
.about-table tr:last-child {
  border-bottom: none;
}

.about-table td p {
  font-size: 1rem;
  margin-bottom: 0;
  padding: 0.5rem 0.5rem 0.5rem 0;
}
.table-striped {
  margin-top: 60px;
  border: none;
}
.table-striped td {
  border: none;
  padding: 7px 10px;
}
.table-striped tr:nth-child(odd) td {
  background-color: var(--lighter-blue);
}
.table-striped tr:nth-child(even) td {
  background-color: #ffffff;
}
/* Lists */
ol,
ul {
  margin-top: 25px;
}
ol {
  list-style-type: decimal;
  counter-reset: my-counter;
}

ol li {
  position: relative;
}

ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  font-weight: 900;
  color: var(--medium-blue);
  position: absolute;
  left: -1.5em; /* Adjust this value as needed */
}

.list-arrows {
  list-style-type: none;
  padding-left: 0; /* Adjust this value as needed */
  margin-left: 0;
}
.list-arrows li {
  display: flex;
  padding-bottom: 15px;
}
.list-arrows li:before {
  content: "";
  display: table;
  width: 20px; /* Adjust this value as needed */
  height: 10px; /* Adjust this value as needed */
  background-image: url("../images/arrow-list.svg");
  background-size: cover;
  margin-right: 5px; /* Adjust this value as needed */
  margin-top: 6px; /* Adjust this value as needed */
  float: left;
}
.step-list {
  counter-reset: step-counter;
}
.step-list .step-list-item {
  display: flex;
  counter-increment: step-counter;
  gap: 1rem;
}
.step-list .counter {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
.step-list .counter-text {
  text-transform: uppercase;
}
.step-list .counter-number:before {
  content: counter(step-counter);
  color: var(--medium-blue);
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}
.step-list .step-list-content {
  background-color: var(--lighter-blue);
}
.step-list .step-list-content *:last-child {
  padding-bottom: 0;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  .list-two-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

/* Footer */
.site-footer a {
  text-decoration: none;
}
.site-footer .footer-logo {
  max-width: 200px;
}
.footer-top a {
  color: var(--lighter-blue);
}
.footer-top .mx-2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-blue);
}

.footer-social-icon {
  border: 1px solid var(--lighter-blue);
  padding: 0.2rem 0.4rem;
}

.footer-bottom {
  font-size: 80%;
}
.footer-copy {
  font-size: 0.75rem;
}

/* Home Page */
.welcome p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.snapshot .stat-label {
  color: var(--lighter-blue);
}
.counter:not(.is-visible) {
  visibility: hidden;
}
.snapshot p {
  font-size: 0.9rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.5rem;
}
.snapshot a,
.snapshot a:hover,
.snapshot a:visited {
  color: #fff;
}

/* Hero */
.hero {
  height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--dark-blue);
}
.hero h1 {
  margin-top: 104px;
  line-height: 1;
  font-size: 48px;
  color: #fff;
  font-weight: 900;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.hero-page {
  height: 400px;
  display: flex;
  align-items: center;
  background-color: var(--dark-blue);
}
@media screen and (min-width: 320px) {
  .hero h1 {
    font-size: calc(60px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  .hero h1 {
    font-size: 75px;
  }
}
.community-profile-container {
  overflow: hidden;
}

.bleed-image {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: unset;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .community-profile-column {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .community-profile-text {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media screen and (min-width: 992px) {
  .community-profile-column {
    position: relative;
  }
  .community-profile-text {
    margin: auto;
    width: 80%;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
#carouselWhy {
  padding-bottom: 5rem;
  overflow: hidden;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#carouselWhy .carousel-inner {
  overflow: visible;
}
#carouselWhy .carousel-caption {
  bottom: -2rem;
}
/* documentation styles*/
.doc-header {
  font-size: 2rem;
  font-weight: 100;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  text-align: center;
  border-bottom: 3px solid var(--light-blue);
}
