@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Special+Gothic+Expanded+One&display=swap");
/** Mobile Variables */
/** Desktop Variables */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  height: 100vh;
  font-family: Poppins, sans-serif;
}

#skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: white;
  opacity: 0;
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

#maincontent > * {
  padding: 0 2em;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.section-title {
  font-size: 20px;
  margin-bottom: 0.35em;
}

.section-subtitle {
  font-size: 20px;
  margin-top: 2em;
}

a {
  color: #000;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 15vh;
  margin-bottom: 1em;
}
.mobile-header-logo {
  width: 85px;
  height: 88px;
}
.mobile-header-menu {
  text-align: center;
}
.mobile-header-menu .hamburger-menu-label {
  font-size: 1.1rem;
}
.mobile-header-nav {
  min-height: auto;
  width: 0;
  position: fixed;
  z-index: 15;
  top: 0;
  right: 0;
  background: #333333;
  overflow-x: hidden;
  transition: all 0.5s;
  transform: translateX(0%);
  color: white;
  padding-bottom: 0.5em;
  padding-top: 1em;
}
.mobile-header-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-left: 1.5em;
}
.mobile-header-nav ul li {
  margin-bottom: 0.75em;
  display: flex;
  align-items: flex-start;
}
.mobile-header-nav ul li .mobile-links-icon {
  font-size: 1.2rem !important;
  margin-right: 0.5em;
}
.mobile-header-nav ul li a {
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s;
  font-size: 1rem;
  text-decoration: none;
}

.nav-close {
  position: absolute;
  right: 1.5em;
  top: 0.6em;
  color: white;
  z-index: 1000;
}
.nav-close:hover {
  cursor: pointer;
}

button {
  background: none;
  border: none;
}

/** Mobile Variables */
/** Desktop Variables */
.banner {
  width: 100%;
  height: 70vh;
  background: linear-gradient(#0DD5FD, #22D3C1);
  background-size: cover;
  position: relative;
  margin-bottom: 2em;
}
.banner-title {
  font-size: 28px;
  margin-bottom: 0.5em;
  line-height: 1.2em;
}
.banner-subtitle {
  font-size: 20px;
  margin-bottom: 0.75em;
}
.banner-search-lbl {
  font-size: 14px;
}
.banner-search-searchbox {
  width: 100%;
  border-radius: 25px;
  padding: 5px 10px;
  position: relative;
  border: 1px solid black;
  position: relative;
  margin-bottom: 3em;
}
.banner-search-icon {
  position: absolute;
  right: 32px;
  color: #fff;
  background: black;
  border-radius: 0 25px 25px 0;
  padding: 1px 3px 2px 3px;
  transition: all 0.3s;
}
.banner-search-icon:hover {
  background: rgb(63.75, 63.75, 63.75);
}
.banner-guide-btn {
  background: #333;
  padding: 8px 15px;
  text-decoration: none;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 2px #000;
  font-weight: bold;
  transition: all 0.3s;
}
.banner-guide-btn:hover {
  box-shadow: none;
  background: #fff;
  color: black;
  position: relative;
}
.banner-guide-btn:visited {
  color: #fff;
  background: #333;
}
.banner-guide-btn:active {
  top: 4px;
  box-shadow: inset 2px 2px 2px #333;
}
.banner-down-caret {
  position: absolute;
  top: 65vh;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-right: -50%;
  font-size: 2.5rem;
}
.banner-down-caret:hover {
  cursor: pointer;
}

.intro-508-desc {
  margin-bottom: 0.5em;
}
.intro-508-desc:last-of-type {
  margin-bottom: 1.5em;
}
.intro-508-disclaimer {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 2em;
}
.intro-508-disclaimer-link {
  color: #000;
}

.benefits {
  background: #f0f0f0;
  padding: 2em !important;
  margin-bottom: 2em;
}
.benefits-list dt {
  font-weight: bold;
}
.benefits-list dd {
  font-size: 15px;
  margin-bottom: 0.65em;
}

.improvements {
  margin-bottom: 2em;
}
.improvements-btn {
  display: block;
  margin: 0 auto;
  background: #333;
  padding: 8px 15px;
  text-decoration: none;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 2px #000;
  font-weight: bold;
  transition: all 0.3s;
}
.improvements-btn:hover {
  box-shadow: none;
  background: #fff;
  color: black;
  position: relative;
}
.improvements-btn:visited {
  color: #fff;
  background: #333;
}
.improvements-btn:active {
  top: 4px;
  box-shadow: inset 2px 2px 2px #333;
}

/** Mobile Variables */
/** Desktop Variables */
#guide-banner {
  background: url("../imgs/guide-banner.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 30vh;
  position: relative;
  margin-bottom: 1em;
}

.topic-selector-menu {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}

.guidebook-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 425px) {
  .guidebook-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.guidebook-content .card {
  width: 250px;
  height: 15vh;
  position: relative;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
  transition: all 0.3s;
  margin: 0 auto;
}
.guidebook-content .card:active {
  box-shadow: rgba(0, 0, 0, 0.8) 0px 2px 8px 0px;
}
.guidebook-content .card-title {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.15em 0.75em;
  font-weight: bold;
  color: #fff;
  width: 100%;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
}
.guidebook-section-intro-header {
  font-size: 28px;
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
.guidebook-section-intro-text {
  margin-bottom: 1em;
}
.guidebook-links {
  background: rgb(227.25, 227.25, 227.25);
  min-height: 100vh;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  overflow-x: hidden;
  transition: all 0.5s;
  transform: translateX(0%);
  padding-bottom: 1.5em;
}
.guidebook-nav {
  margin-bottom: 1em;
}
.guidebook-nav-topic-selector {
  display: flex;
  position: relative;
}
.guidebook-nav-topic-selector-icon {
  margin-right: 0.5em;
}
.guidebook-nav-title {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.guidebook-nav-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.25em;
  padding: 1em 0 0 1.5em;
}
.guidebook-nav-link-list {
  margin-bottom: 0.25em;
  padding-left: 2em;
}
.guidebook-nav-link-list, .guidebook-nav-sub-link-list {
  list-style-type: none;
}
.guidebook-nav-sub-link-list {
  text-indent: 1em;
}
.guidebook-nav-sub-link-list li::before {
  content: "- ";
}

#guidebook-topic-selector-close {
  position: fixed;
  left: 53vw;
  top: 1.5em;
  color: #000;
  z-index: 1000;
  display: none;
}
#guidebook-topic-selector-close:hover {
  cursor: pointer;
}

#guidebook-nav-topic-title {
  text-decoration: underline;
}

/** Mobile Variables */
/** Desktop Variables */
#sub-page-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 30vh;
  position: relative;
}

.breadcrumbs {
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 1em;
}
.breadcrumbs #page-category {
  background: #0DD5FD;
  padding: 0.25em 0.5em;
}

.sub-page-intro-header {
  font-size: 30px;
  margin-bottom: 0.25em;
  text-align: center;
  text-transform: capitalize;
}
.sub-page-intro-definition {
  margin-bottom: 1.5em;
}
.sub-page-intro-spacer {
  display: block !important;
  text-align: center;
  margin-bottom: 1.5em;
}

.sub-page-content-explained {
  margin-bottom: 2em;
}
.sub-page-content-title {
  font-size: 22px;
}
.sub-page-content-resources-list {
  margin-left: 2em;
}
.sub-page-content .example-img {
  width: 100%;
  margin-bottom: 1em;
}

/** Mobile Variables */
/** Desktop Variables */
.footer {
  width: 100%;
  background: #333;
  margin-top: 3em;
  color: #fff;
  padding: 2em;
}
.footer-grid {
  display: flex;
  flex-direction: column;
}
.footer-grid-col {
  text-align: center;
  margin-bottom: 1em;
}
.footer-grid-col-header {
  color: #0DD5FD;
  padding-bottom: 0.5em;
  font-size: 1.1rem;
}
.footer-grid-col-1-contacts, .footer-grid-col-3-resources {
  margin-bottom: 0.5em;
}
.footer-grid-col-1-contacts-list, .footer-grid-col-3-resources-list {
  list-style-type: none;
  margin: 0;
}
.footer-grid-col-1-contacts-list li, .footer-grid-col-3-resources-list li {
  margin-bottom: 0.5em;
}
.footer-grid-col-1-contacts-list li a, .footer-grid-col-3-resources-list li a {
  color: #fff;
}
.footer-grid-col-3-resources-list {
  list-style-type: none;
  margin: 0;
}/*# sourceMappingURL=main.css.map */