  .page-title-desc-image {
  display: none;
}

/* ============================================
       UTILITY CLASSES
       ============================================ */
.align-left {
  text-align: left;
}

/* ============================================
       LINK CLASSES
       ============================================ */
.link {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link a {
  text-decoration: none;
  transition: color 0.2s ease;
  color: rgb(var(--color-dark-blue));
  font-family: var(--font-family-medium);
  font-size: 16px;
}

.link a:hover {
  color: rgb(var(--color-orange));
  text-decoration: none;
}

.link-bold {
  font-weight: bold;
  font-family: var(--font-family-bold);
  font-size: 16px;
  color: rgb(var(--color-dark-blue));
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.link-bold:hover {
  color: rgb(var(--color-orange));
  text-decoration: none;
}

.link-bold.currentFilter,
.link-bold.currentFilter:active,
.link-bold.currentFilter:focus,
.link-bold.currentFilter:hover,
.link-bold.currentFilter:visited {
  color: rgb(var(--color-dark-gray)) !important;
  text-decoration: none;
  cursor: default;
}

/* ============================================
       CARD WHITE TITLE
       ============================================ */
.card-white-title {
  font-family: var(--font-family-medium);
  font-size: 20px;
  font-weight: 500;
  color: rgb(var(--color-near-black));
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(var(--color-dark-blue));
}

/* ============================================
       RIGHT CONTENT ICON LINKS
       ============================================ */
.right-content-icon-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.right-content-icon-links li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgb(var(--color-light-gray));
}

.right-content-icon-links li:last-child {
  border-bottom: none;
}

.right-content-icon-links a {
  display: block;
  padding: 12px 0;
  color: rgb(var(--color-dark-blue));
  text-decoration: none;
  font-family: var(--font-family-medium);
  font-size: 16px;
  transition: color 0.2s ease;
}

.right-content-icon-links a:hover {
  color: rgb(var(--color-orange));
  text-decoration: none;
}

/* ============================================
       BLOG FILTER
       ============================================ */
.blog-filter {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-filter li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgb(var(--color-light-gray));
}

.blog-filter li:last-child {
  border-bottom: none;
}

.blog-filter a {
  display: block;
  padding: 12px 0;
  color: rgb(var(--color-dark-blue));
  text-decoration: none;
  font-family: var(--font-family-medium);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.blog-filter a:hover {
  color: rgb(var(--color-orange));
  text-decoration: none;
}
.menu-blog-icon img {
  display: none;
}
/* Custom Modal Styles */
.gh-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.gh-modal.gh-show {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

.gh-modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

@media (min-width: 576px) {
  .gh-modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .gh-modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
    display: flex;
    align-items: center;
  }
}

.gh-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.gh-modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.gh-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.gh-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}

.gh-btn-primary {
  color: #fff;
  background-color: rgb(var(--color-dark-blue));
  border-color: rgb(var(--color-dark-blue));
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.gh-btn-primary:hover {
  color: #fff;
  background-color: rgb(var(--color-orange));
  border-color: rgb(var(--color-orange));
}
