/* Root Variables */
:root,
[data-bs-theme="light"] {
  --bs-primary: #7b1f28;
  --bs-secondary: #333333;
  --bs-light: #e2e2e2;
  --bs-dark: #231f20;

  --bs-primary-rgb: 123, 31, 40;
  --bs-secondary-rgb: 51, 51, 51;
  --bs-light-rgb: 226, 226, 226;
  --bs-dark-rgb: 35, 31, 32;

  --bs-primary-text-emphasis: #50030b;
  --bs-secondary-text-emphasis: #211f1f;
  --bs-light-text-emphasis: #562429;
  --bs-dark-text-emphasis: #562429;

  --bs-primary-bg-subtle: #ffcacf;
  --bs-secondary-bg-subtle: #bcbcbc;
  --bs-light-bg-subtle: #f1f1f1;
  --bs-dark-bg-subtle: var(--bs-secondary);

  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;

  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: "Barlow";
  --bs-header-font-family: "Barlow Condensed"; /* Added */
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 500;
  --bs-body-line-height: 1.5;
  --bs-body-color: var(--bs-dark);
  --bs-body-color-rgb: var(--bs-dark-rgb);
  --bs-body-bg: var(--bs-white);
  --bs-body-bg-rgb: var(--bs-white-rgb);
  --bs-emphasis-color: var(--bs-black);
  --bs-emphasis-color-rgb: var(--bs-black-rgb);
  --bs-secondary-color: rgba(var(--bs-dark-rgb), 0.75);
  --bs-secondary-color-rgb: var(--bs-dark-rgb);
  --bs-secondary-bg: #747474;
  --bs-secondary-bg-rgb: 116, 116, 116;
  --bs-tertiary-color: rgba(var(--bs-dark-rgb), 0.5);
  --bs-tertiary-color-rgb: var(--bs-dark-rgb);
  --bs-tertiary-bg: var(--bs-light);
  --bs-tertiary-bg-rgb: var(--bs-light-rgb);
  --bs-heading-color: inherit;
  --bs-link-color: var(--bs-primary);
  --bs-link-color-rgb: var(--bs-primary-rgb);
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary-text-emphasis);
  --bs-link-hover-color-rgb: 80, 3, 11;
  --bs-code-color: #d63384;
  --bs-highlight-color: var(--bs-dark);
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: var(--bs-light-bg-subtle);
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}

/* Utilities */
@media (min-width: 992px) {
  .col2 {
    column-count: 2;
    column-gap: 3rem;
  }
}

.flex-media {
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
}

.flex-media p {
  display: none;
}

.flex-media iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.flex-media .media-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: var(--bs-white);
  left: 0;
  min-height: 30%;
  padding: 3.5rem 50% 3.5rem 5rem;
  pointer-events: none;
  position: absolute;
  width: 100%;
  display: flex;
}

@media (max-width: 767.98px) {
  .flex-media .media-info {
    padding: 1.5rem;
  }

  .fullwidth-mobile {
    position: relative;
  }

  .fullwidth-mobile:after {
    background-color: var(--bs-light);
    content: "";
    height: 100%;
    left: -25vw;
    position: absolute;
    top: 0;
    width: 150vw;
    z-index: -1;
  }
}

@media (max-width: 574.98px) {
  .video__meta-preview {
    display: none;
  }
  
  .flex-media .media-info {
    padding: 0 1.5rem;
  }
}

/* Overrides */
.zindex-modal {
  z-index: 1055;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-header-font-family);
}

.h1,
h1 {
  font-size: calc(2.375rem + 1.5vw);
  letter-spacing: -1.5px;
}

.h2,
h2 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 992px) {
  .h1,
  h1 {
    font-size: calc(var(--bs-body-font-size) * 4.6875);
  }

  .h2,
  h2 {
    font-size: calc(var(--bs-body-font-size) * 2.5);
  }

  .h3,
  h3 {
    font-size: calc(var(--bs-body-font-size) * 1.875);
  }

  .h4,
  h4 {
    font-size: calc(var(--bs-body-font-size) * 1.375);
  }
}

.nav-link.h2 {
  font-size: calc(var(--bs-body-font-size) * 2.5);
}

.nev-link.h3 {
  font-size: calc(var(--bs-body-font-size) * 1.875);
}

.h1,
h1,
.h2,
h2 {
  font-weight: 700;
  text-transform: uppercase;
}

.h2,
h2,
.h4,
h4,
.h5,
h5 {
  text-transform: uppercase;
}

.h3,
h3,
.h4,
h4 {
  font-family: var(--bs-font-family);
}

.h3,
h3,
.h5,
h5 {
  font-weight: 600;
}

.text-bg-primary a,
.text-bg-secondary a,
.text-bg-dark a,
.bg-secondary.text-white a {
  color: var(--bs-white);
}

.text-bg-primary a:hover,
.text-bg-secondary a:hover,
.text-bg-dark a:hover,
.bg-secondary.text-white a:hover {
  color: var(--bs-light);
}

a,
button {
  transition: all 0.3s ease;
}

#main ul li:not(:first-of-type),
#main ol li:not(:first-of-type) {
  margin-top: 1rem;
}

.form-control,
.form-select {
  min-width: 250px;
  padding: 0.5rem 0.75rem;
}

.btn,
.btn-primary {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-font-family: var(--bs-header-font-family);
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0;
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-dark);
  --bs-btn-hover-border-color: var(--bs-light);
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-secondary-bg);
  --bs-btn-active-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem
    rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  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;
  text-transform: uppercase;
}

.btn-light {
  --bs-btn-color: var(--bs-dark);
  --bs-btn-bg: var(--bs-white);
  --bs-btn-border-color: var(--bs-light);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-dark);
  --bs-btn-hover-border-color: var(--bs-white);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-secondary-bg);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
  color: var(--bs-btn-color) !important;
}

.btn-light:hover {
  color: var(--bs-white) !important;
}

.carousel-indicators [data-bs-target] {
  border-radius: 50%;
  height: 10px;
  margin-right: 10px;
  margin-left: 10px;
  width: 10px;
}

.carousel-control-next,
.carousel-control-prev {
  top: 45%;
  bottom: 45%;
}

.related .card {
  margin-top: 1rem;
}

.card-title,
.card-title a,
.card-title .btn-secondary {
  color: var(--bs-dark);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--bs-secondary);
}

.lead,
.card-subtitle {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin: 0 0 0.5rem 0;
}

.lead a,
.card-subtitle a {
  color: var(--bs-primary);
  text-decoration: none;
}

.meta-tags {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-primary);
}

.card.text-bg-dark .card-title,
.card.text-bg-dark .card-title a {
  color: var(--bs-white);
}

.card.text-bg-dark .card-title a:hover {
  color: var(--bs-light);
}

@media (max-width: 767.98px) {
  .card-body {
    padding: 1rem 0 !important;
  }

  .card-footer {
    padding: 0 0 1rem 0 !important;
  }
}

/* Customizations */
.btn-secondary {
  color: var(--bs-primary);
  display: block;
  font-weight: 700;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-secondary:before {
  background-color: var(--bs-primary);
  bottom: -0.5rem;
  color: var(--bs-primary);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  transition: all 0.3s ease;
  width: 30px;
}

.btn-secondary:hover {
  color: var(--bs-secondary-bg);
}

.btn-secondary:active {
  color: var(--bs-dark);
}

.btn-secondary:hover:before,
.btn-secondary:active:before {
  background-color: var(--bs-secondary-bg);
  width: 100%;
}

.btn-secondary:active::before {
  background-color: var(--bs-dark);
}

.pagination {
  text-transform: uppercase;
}

.disabled > .page-link,
.page-link.disabled {
  background-color: var(--bs-light) !important;
  color: var(--bs-secondary-bg) !important;
}

.page-item:not(:first-child) .page-link {
  background-color: transparent;
  color: var(--bs-light-bg-subtle);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--bs-dark);
  border-color: var(--bs-light);
  color: var(--bs-white);
}

.page-item:first-child .page-link:active,
.page-item:last-child .page-link:active {
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  color: var(--bs-white);
}

.active > .page-link,
.page-link.active {
  background-color: transparent;
  border: none;
  border-bottom: 5px solid var(--bs-secondary) !important;
  color: var(--bs-secondary-bg);
}

.modal-title {
  position: relative;
}

.modal-title:before {
  background-color: var(--bs-primary);
  bottom: -0.5rem;
  color: var(--bs-primary);
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  transition: all 0.3s ease;
  width: 25%;
}

.btn-close {
  width: auto;
  height: auto;
  color: inherit;
  border-radius: 0;
  opacity: 1;
}

/* Blocks */
.fullwidthcallout .container,
.internalhero .container,
.richtexteditor .container,
.contentcards h2 + p,
.contentcategorycards h2 + p,
.contenticoncards h2 + p {
  padding: 0 5vw;
}

.fullwidthcallout .container {
  max-width: 1100px;
}
.fullwidthcallout p {
  font-weight: 400;
  font-size: 2rem;
  font-family: var(--bs-header-font-family);
  text-transform: uppercase;
  margin: 1.5rem 0;
}

.homehero p {
  font-weight: 400;
}
.homehero__media video {
  aspect-ratio: 16 / 9;
}

.internalhero {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.internalhero:after {
  backdrop-filter: brightness(40%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.internalhero .container {
  position: relative;
  z-index: 1;
}

.internalhero .internalhero__subheading,
.fullwidthcallout .fullwidthcallout__subheading {
  font-weight: 400;
}

.calloutimgright .calloutimgright__heading,
.calloutimgright .calloutimgright__subheading,
.calloutimgleft .calloutimgleft__heading,
.calloutimgleft .calloutimgleft__subheading {
  text-transform: none;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.calloutimgright .calloutimgright__subheading,
.calloutimgleft .calloutimgleft__subheading {
  font-weight: 400;
}

@media (min-width: 1440px) {
  .calloutimgleft .p-5 {
    padding: 5vw !important;
  }

  .calloutimgright .p-5 {
    padding: 5vw !important;
  }
}

@media (min-width: 1800px) {
  .calloutimgleft .p-5 {
    padding: 5vw 15% 5vw 5vw !important;
  }

  .calloutimgright .p-5 {
    padding: 5vw 5vw 5vw 15% !important;
  }
}

.contentcards .card-header img,
.contentgallery .card-header img {
  filter: brightness(60%);
  transition: filter 0.3s ease;
}

.contentcards .card:hover .card-header img,
.contentgallery .card:hover .card-header img {
  filter: brightness(100%);
  transition: filter 0.3s ease;
}

.contentcategorycards .card {
  text-decoration: none;
  transition: all 0.3s ease;
}

.contentcategorycards .card:hover {
  background-color: var(--bs-primary) !important;
}

.contentcategorycards .card img {
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.contentcategorycards .card:hover img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.contentcategorycards .card-title {
  margin: 0;
  text-transform: uppercase;
}

.contenticoncards {
  overflow: hidden;
  position: relative;
}

.contenticoncards::before {
  background-image: url("/media/g1lh33jc/bg-dots.png");
  background-position: top left;
  background-repeat: repeat;
  background-size: 5%;
  content: "";
  height: 50%;
  left: 0;
  top: 0;
  opacity: 0.15;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.contenticoncards .card-img-top {
  filter: brightness(50%);
  height: 70%;
  left: 15%;
  top: 15%;
  width: 70%;
}

.contenticoncards .card-icon-top {
  height: 30%;
  left: 35%;
  top: 35%;
  width: 30%;
}

.contenticoncards .card-subtitle {
  font-weight: 400;
  text-transform: none;
}

.contentgallery .contentgallery__content {
  background-color: var(--bs-light);
}

.contentgallery .h1 {
  font-size: calc(2.375rem + 1.5vw) !important;
}

.contentgallery .carousel-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.contentgallery .carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.contentgallery .carousel-slide {
  box-sizing: border-box;
  flex: 0 0 50%;
  padding: 0 1.5rem 0 0;
}

@media (min-width: 768px) {
  .contentgallery .carousel-slide {
    flex: 0 0 66.6667%; /* Tablet: 1.5 slides */
  }
}

@media (min-width: 992px) {
  .contentgallery .carousel-slide {
    flex: 0 0 40%; /* Desktop: 2.5 slides */
  }
}

.fullwidthform,
.productcards {
  background-blend-mode: screen;
  background-color: var(--bs-dark);
  background-image: url("/media/g1lh33jc/bg-dots.png");
  background-position: top left;
  background-repeat: repeat;
  background-size: 5%;
}

.fullwidthform fieldset {
  max-width: unset !important;
  text-align: left;
}

.fullwidthform .form-columns-2 {
  display: flex;
  flex-flow: row;
  float: none !important;
  gap: 2rem;
}

.fullwidthform .field {
    margin-bottom: 18px !important;
}

.fullwidthform label {
  font-family: var(--bs-header-font-family) !important;
  line-height: 20px !important;
  margin-bottom: 4px !important;
}

.fullwidthform .hs-form-required, .fullwidthform .hs-error-msgs label {
  color: red !important;
  font-family: var(--bs-header-font-family) !important;
}

.fullwidthform .hs-input {
  border: 1px solid #cbd6e2 !important;
  color: #33475b !important;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
  font-size: 16px !important;
  font-weight: normal !important;
  height: 40px !important;
  line-height: 22px !important;
  min-height: 27px !important;
  padding: 0 15px !important;
  width: 100% !important;
}

.fullwidthform .hs-input.hs-fieldtype-textarea {
  height: 80px !important;
}

.fullwidthform .hs-input[type=file] {
  border: 1px solid transparent !important;
  color: #ffffff !important;
  padding: 0 !important;
}

.fullwidthform ul.no-list {
    list-style: none !important;
}

.fullwidthform .inputs-list {
    margin: 0 0 5px !important;
    padding-left: 5px !important;
    width: 100% !important;
}

.fullwidthform .actions {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
    padding: 17px 0px !important;
}

.fullwidthform .hs-button {
  background: #7B1F28 !important;
  border: 1px solid #7B1F28 !important;
  border-style: solid !important;
  color: #ffffff !important;
  font-family: var(--bs-header-font-family) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 14px !important;
  padding: 12px 24px !important;
}

.blogcards .card-header,
.productcardssimple .card-header,
.teamcards .card-header {
  overflow: hidden;
}

.blogcards .card img,
.productcardssimple .card img,
.teamcards .card img {
  transition: all 0.3s ease;
}

.productcards .card-img-top {
  padding: 1rem;
}
.productcards .card-header {
  background-color: var(--bs-white);
}
.blogcards .card:hover img,
.productcardssimple .card:hover img,
.teamcards .card:hover img {
  transform: scale(1.05);
}

.productcardssimple .btn-secondary {
  text-align: center;
}

.productcardssimple .btn-secondary:before {
  left: calc(50% - 15px);
  opacity: 0;
  width: 30px;
}

.productcardssimple .card:hover .btn-secondary:before,
.productcardssimple .btn-secondary:hover:before,
.productcardssimple .btn-secondary:active:before {
  background-color: var(--bs-primary);
  left: 5%;
  opacity: 1;
  width: 90%;
}

.testimonial {
  padding: 0 15%;
}

.vendorscallout__logos {
  gap: 1.5rem;
}

.vendorscallout__logos .logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendorscallout__logos .logo-item img {
  max-width: 100%;
  max-height: 46px;
  height: auto;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .vendorscallout__logos .logo-item {
    max-width: 18%;
  }
}

.video__meta {
  border-left: 3px var(--bs-border-style) var(--bs-primary);
  margin-top: auto;
}

.video__meta-tags {
  font-weight: 700;
}

.video__meta-tags a {
  color: var(--bs-white);
  text-decoration: none;
  text-transform: uppercase;
}

/* Layouts */
@media (min-width: 1800px) {
  .homehero__content {
    padding-right: 15% !important;
  }
}

.home .fullwidthcallout .container {
  display: flex;
  flex-flow: column;
}

.home .fullwidthcallout .fullwidthcallout__heading {
  order: 2;
}

.home .fullwidthcallout .fullwidthcallout__subheading {
  order: 1;
}

.calendar .row:not(:first-of-type) {
  min-height: 14.285vw;
}

.calendar .col {
  width: 14.285%;
}

.event-link {
  color: var(--bs-black);
  text-decoration: none;
}

.event-link + .event-link {
  margin-top: 0.5rem;
}

.event-link:hover,
.event-link:active {
  color: var(--bs-primary);
  text-decoration: underline;
}

.event-link img {
  height: auto;
  width: 18px;
}

.event-summary img {
  height: auto;
  width: 42px;
}

.event-cta img {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .article #content,
  .teammate #content,
  .casestudy #content,
  .resource #content,
  .video #content {
    background: linear-gradient(to right, #fff 62.75%, #e2e2e2 62.75%);
    overflow: hidden;
  }

  .errorpage404 #content {
    background: linear-gradient(to right, #fff 50%, #e2e2e2 50%);
    overflow: hidden;
  }
}

.searchpage .listing-item {
  min-height: 4rem;
}

.searchpage .listing-item:not(:first-of-type) {
  border-top: 5px solid var(--bs-primary);
  margin-top: 3rem;
  min-height: 8rem;
  padding-top: 3rem;
}

.searchpage .listing-item a {
  text-decoration: none;
}

.errorpage404 h1:before {
  content: "404";
  display: block;
}

/* TEMPORARY FIX */
[class*="products-"] h1 {
  left: 0;
  position: absolute;
  z-index: -1;
}

/* Promo */
.utility-promotion {
  font-weight: 700;
}

/* Utility */
.utility-nav {
  display: none;
  font-family: var(--bs-header-font-family);
  font-weight: var(--bs-body-font-weight);
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .utility-nav {
    display: block;
  }
}

.utility-nav .nav-link {
  line-height: 1;
}

.utility-nav .language-toggle.nav-item {
  border-right: var(--bs-border-width) var(--bs-border-style)
    var(--bs-secondary);
  margin: 0.5rem 0;
  padding: 0 0.5rem 0 0;
}

.utility-nav .language-toggle .nav-link {
  padding: 0 0.5rem;
}

.utility-nav .search-toggle .nav-link path {
  fill: var(--bs-secondary);
}

.utility-nav .search-toggle .nav-link:hover path {
  fill: var(--bs-secondary-bg-subtle);
}

.utility-nav .search-toggle .nav-link:active path {
  fill: var(--bs-primary);
}

.utility-nav .nav-highlight .nav-link {
  color: var(--bs-primary);
  font-weight: 600;
}

.utility-nav .nav-highlight .nav-link:hover {
  opacity: 0.8;
}

/* Navbar */
.sitewide-nav {
  font-family: var(--bs-header-font-family);
  font-weight: var(--bs-body-font-weight);
}

.sitewide-nav .nav-item {
  padding: 0 0.75vw;
}
.nav-link.is-active {
  text-decoration: underline;
}

.mobile-toggles {
  display: block;
}

.mobile-toggles .btn,
.mobile-toggles .btn:hover,
.mobile-toggles .btn:active,
.zindex-modal .btn,
.zindex-modal .btn:hover,
.zindex-modal .btn:active {
  background: none;
  border: none;
}

@media (min-width: 992px) {
  .mobile-toggles {
    display: none;
  }
}

.navbar-toggler {
  border: none !important;
}

.navbar-expand-lg {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-light);
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-light);
}

.navbar-nav .nav-link.is-active {
  color: var(--bs-primary);
}

.mobile-menu-overlay .navbar-nav .nav-link.is-active {
  color: var(--bs-white);
}

.navbar-expand-lg .navbar-nav .dropdown .nav-link {
  padding-right: 0;
}

.dropdown-menu {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-white);
  border-radius: 0;
}

.dropdown-toggle-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}

.dropdown-menu .dropdown-toggle-icon {
  padding: 0 0.25rem;
}

.mega-menu {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-light);
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
}

.navbar .dropdown-menu.mega-menu {
  background-color: var(--bs-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  position: absolute;
  z-index: 1000;
}

.mega-menu.show {
  display: block !important;
}

.dropdown-menu .list-unstyled .nav-link {
  font-size: 0.9em;
}

/* Breadcrumb */
#breadcrumb {
  min-height: 3rem;
}

.breadcrumb {
  font-size: 0.9em;
  margin-bottom: 0;
  padding-bottom: 0.6rem;
}

#main .breadcrumb li:not(:first-of-type) {
  margin-top: 0;
}

/* Footer */
.footer a {
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  width: 60%;
}

.footer-links li {
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.footer-links li:last-of-type {
  margin-bottom: 0;
}

.footer-links:not(:last-of-type) {
  border-bottom: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color);
  padding-bottom: 1rem;
}
