body, html {
    margin: 0;
    padding: 0;
}

/* Skip link for accessibility: only visible on keyboard focus, readable by screen readers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
  top: 10;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  background: var(--wp--preset--color--dark-blue);
  color: var(--wp--preset--color--white);
  padding: 0.5rem 0.75rem;
  z-index: 1000;
  text-decoration: none;
  outline: 2px solid var(--wp--preset--color--white);;
  outline-offset: 2px;
}

@media (max-width: 768px){
    h1 {
        font-size: 2.25rem !important;
        line-height: 2.8125rem !important; 
    }

    h2 {
      font-size: 2rem !important;
      line-height: 2.5rem !important; 
    }

    h3,
    h3.daexthefup-title {
      font-size: 1.5rem !important;
      line-height: 2rem !important; 
    }

    html body p,
    html body li,
    .has-small-font-size,
    .post-excerpt {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }

    .has-body-small-font-size {
      font-size: 0.75rem !important;
      line-height: 1.25rem !important;
    }

    .news-list h2,
    .search-results-list h2 {
      font-size: 1.5rem !important;
      line-height: 2rem !important;
    }
}

@media (max-width: 782px) {
  body.admin-bar .top-bar,
  body.admin-bar .mobile-menu {
    margin-top: 46px;
  }
}

@media (min-width: 783px) and (max-width: 1199px) {
  body.admin-bar .top-bar,
  body.admin-bar .mobile-menu {
    margin-top: 2rem;
  }
}

@media (max-width: 1354px) {
  .mobile-header-spacer {
    height: 48px;
    width: 100%;
  }
}

body.home h1 {
  margin-top: 48px;
}

h1.has-x-large-font-size:not(:has(+ p)) {
  text-align: center;
}

.breadcrumbs {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 2%;
  margin: 0 !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-color: #F4F4F6;
  width: 100%;
  max-width: 100%;
}

@media(min-width: 768px ) and (max-width: 1056px){
  .breadcrumbs {
      padding-left: 55px;
      padding-right: 55px;
  }
}

@media(min-width: 1057px ){
  .breadcrumbs {
    padding-left: 110px;
    padding-right: 110px;
  }
}

.breadcrumbs a {
    padding: 0 10px;
    color: #171A1F;
}

.breadcrumbs a.current {
    color: var(--wp--preset--color--dark-gray);
    text-decoration: none;
}

.breadcrumbs + .cabb-block-background {
  margin-top: 0 !important;
}

/* Responsive helpers */
.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

/* Site header */
.site-header .btn {
	display: inline-block;
	border-radius: 1.25rem;
	text-decoration: none;
  font-family: arial;
  font-size: 0.75rem;
	font-weight: 700;
}

.site-header .btn.account {
	color: var(--wp--preset--color--dark-blue);
  background-color: transparent;
  padding: 0.8125rem 1rem;
  border: 2px solid transparent;
  border-radius: 99999px;
  flex-shrink: 0;
}

.site-header .btn-blue {
	background-color: var(--wp--preset--color--dark-blue);
  padding: 0.8125rem 1rem;
  border: 2px solid transparent;
  border-radius: 99999px;
	color: white;
  flex-shrink: 0;
}

.site-header .btn-outline {
	background-color: white;
  padding: 0.8125rem 1rem;
  border: 2px solid #1F5EA9;
  border-radius: 99999px;
	color: #1F5EA9;
  flex-shrink: 0;
}

.site-header .btn-blue:hover,
.site-header .btn-outline:hover,
.site-header .btn.account:hover, 
.site-header .btn-blue:active,
.site-header .btn-outline:active,
.site-header .btn.account:active {
	background-color: var(--wp--preset--color--super-dark-gray);
	color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--super-dark-gray);
}

.site-header .btn-outline:focus,
.site-header .btn-blue:focus,
.site-header .btn.account:focus {
	background-color: var(--wp--preset--color--super-dark-gray);
	color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--dark-blue);
}

.site-header .rainbow-border {
  position: relative;
  display: inline-block;
  padding: 0.6875rem 1rem;
  border-radius: 9999px;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--dark-blue);
  font-weight: 600;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.site-header .rainbow-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 0.125rem;
  background: linear-gradient(90deg, #db0000, #5fd400, #00bbd4, #d40098, #d40098);
  border-radius: 9999px;
  mask: 
    linear-gradient(#fff 0 0) content-box no-repeat,
    linear-gradient(#fff 0 0) no-repeat;
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box no-repeat,
    linear-gradient(#fff 0 0) no-repeat;
  -webkit-mask-composite: destination-out;
  z-index: -1;
}

.site-header > .top-bar.mobile-only {
  margin-bottom: 18.75rem;
}

.site-header .main-nav.desktop-only {
  padding:  1rem;
  font-size: 1rem;
  line-height: 1rem;
}

.site-header .container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 1.25rem;
}

.site-header .container .logo {
  flex-shrink: 0;
}

.site-header .mobile-only .container .logo img {
  height: 2rem;
  width: auto;
}

.site-header .top-bar.mobile-only {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: white;
  z-index: 10001;
  border-bottom: 1px solid #e5e5e5;
  height: 3rem;
  padding: 0 0 0 1rem;
}

.site-header .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #F0F0F2;
  z-index: 9999;
  overflow-y: auto;
  padding: 3rem 0 0 0 !important;
}

.site-header .mobile-menu.active {
  display: block !important;
}

.site-header .mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.site-header .mobile-icons {
  display: flex;
}

.site-header .mobile-icons a {
  text-decoration: none;
  padding: 8.2px 0.75rem;
}

.site-header .mobile-icons button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

.site-header .mobile-icons a img {
  padding-bottom: 0.125rem;
}

.site-header .mobile-icons button img {
  padding: 0.75rem;
}

.site-header .mobile-icons .menu-toggle.active {
  background-color: var(--wp--preset--color--dark-blue);
}

.site-header .mobile-utility {
  padding: 1.25rem 1rem;
  text-align: center;
  background-color: #F0F0F2;
}

.site-header .utility-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 509px;
  margin: 0 auto;
  background-color: #F0F0F2;
  gap: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #D3D3D6;
}

.site-header .utility-links a {
  flex: 1;
  font-family: Arial;
  font-size: 1rem;
  font-weight: 400;
  color: var(--wp--preset--color--dark-blue);
  text-decoration: none;
  padding: 0;
  line-height: 1.25rem;
  position: relative;
}

.site-header .utility-links a:first-child {
  text-align: left;
}

.site-header .utility-links a:nth-child(3) {
  text-align: center;
}

.site-header .utility-links a:last-child {
  text-align: right;
}

.site-header .utility-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.25rem;
  width: 1px;
  background-color: #D3D3D6;
}

.site-header .mobile-buttons {
  display: flex;
  justify-content: space-between;
  margin: 1.25rem auto 1rem auto;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 509px;
}

.site-header .mobile-buttons .btn {
  display: flex;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
  align-items: center;
  gap: 8px;
}

.site-header .mobile-buttons .btn.btn-blue {
  border: none;
  border-radius: 99999px;
  text-align: center;
  box-sizing: border-box;
}

.site-header .mobile-buttons .btn span img {
  padding-bottom: 0.125rem;
}

.site-header .mobile-buttons .btn.rainbow-border {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 15.625rem;
  padding: 0.875rem;
  border: none;
  text-align: center;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1;
}

.site-header .mobile-buttons .btn.rainbow-border span img {
  padding-right: 4px;
  padding-bottom: 0;
}

.site-header .mobile-nav {
  padding-left: 0;
  margin-bottom: 0;
}

.site-header .mobile-nav,
.site-header .mobile-nav .menu-item {
  list-style-type: none;
}

.site-header .mobile-nav .menu-item a {
  text-decoration: none;
}

.site-header .mobile-nav .menu-item-has-children > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.21875rem 1rem;
  background-color: #fff;
  border-bottom: 1px solid #D3D3D6;
  color: var(--wp--preset--color--dark-blue);
}

.site-header .mobile-nav .menu-item-has-children.open > div {
  background-color: var(--wp--preset--color--dark-blue);
  border-bottom: 1px solid var(--wp--preset--color--dark-blue);
  color: #fff;
}

.site-header .mobile-nav .menu-item-has-children .accordion-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.21875rem 1rem;
  background: #fff;
  border-bottom: 1px solid #D3D3D6;
  text-decoration: none;
  color: var(--wp--preset--color--dark-blue);
  font-weight: 600;
  cursor: pointer;
}

.site-header .mobile-nav .menu-item-has-children .accordion-link {
  width: 50%;
  display: flex;
  align-items: center;
}

.site-header .mobile-nav .menu-item-has-children .accordion-link a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
}

.site-header .mobile-nav .menu-item-has-children .accordion-icon-toggle {
  width: 50%;
  height: 100%;
  padding-right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.site-header .mobile-nav .menu-item-has-children .accordion-icon-toggle::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background-color: var(--wp--preset--color--dark-blue);
  mask-image: url('../images/icon-menu-arrow.svg');
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url('../images/icon-menu-arrow.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: transform 0.3s ease;
}

.site-header .mobile-nav .menu-item-has-children.open .accordion-icon-toggle::before {
  transform: rotate(180deg);
  background-color: #fff;
}

.site-header .mobile-nav .sub-menu {
  display: none;
}

.site-header .mobile-nav .menu-item-has-children.open > .sub-menu {
  display: block;
  padding: 0.25rem 2.5rem 1.25rem 2.5rem;
  background-color: #F4F4F6;
}

.site-header .mobile-nav .menu-item-has-children.open > .sub-menu .menu-item > a {
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
  color: var(--wp--preset--color--dark-blue);
  padding: 1rem 0 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.site-header .mobile-nav .menu-item-has-children.open > .sub-menu .menu-item.menu-item-type-custom.submenu-heading > a {
  display: block;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.75rem;
  font-weight: 400;
  color: #7d7d7d;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 1.5rem 0 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.site-header .mobile-nav .menu-item-has-children.open > .sub-menu .menu-item.menu-item-type-custom.submenu-heading > a[href="#"] {
  pointer-events: none;
}

.site-header .mobile-nav .menu-item-has-children.open > .sub-menu .menu-item:last-child > a {
  border-bottom: none;
}

.site-header .mobile-nav > .menu-item:not(.menu-item-has-children) > a {
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.21875rem 1rem;
  background-color: #fff;
  border-bottom: 1px solid #D3D3D6;
  color: var(--wp--preset--color--dark-blue);
}

.site-header:has(.account-menu-wrapper) .btn.account {
	display: none;
}

.site-header .account-menu-wrapper {
  position: relative;
  display: inline-block;
  height: 100%;
}

.site-header .account-toggle-mobile {
  display: inline-block;
	border-radius: 1.25rem;
	text-decoration: none;
  font-family: arial;
  font-size: 1rem !important;
  line-height: 1.375rem;
	font-weight: 700 !important;
  color: #171A1F;
  background-color: #FFCC00 !important;
  padding: 0.8125rem 0.6rem 0.8125rem 1rem !important;
  border: 0.125rem solid transparent;
  border-radius: 99999px;
  flex-shrink: 0;
  cursor: pointer;
}

.site-header .account-toggle-mobile .arrow-right img {
  margin-bottom: 0.125rem;
  margin-top: 0;
  transform: rotate(90deg);
}

.site-header .account-toggle-mobile:hover .arrow-right img,
.site-header .account-toggle-mobile:active .arrow-right img {
  filter: brightness(0) invert(1);
}

.site-header .account-toggle-mobile:hover,
.site-header .account-toggle-mobile:active {
  background-color: var(--wp--preset--color--super-dark-gray) !important;
  color: var(--wp--preset--color--white);
  border: 0.125rem solid var(--wp--preset--color--super-dark-gray);
}

@media (min-width: 1200px) {
  .desktop-only {
    display: block;
  }

  body.no-scroll {
    overflow: hidden;
    position: relative;
    height: 100vh;
  }

  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }

  .mobile-only {
    display: none;
  }

  body.menu-open  .mobile-only{
    display: block;
  }
  .site-header .desktop-only .container .logo img {
    height: 3rem;
    width: auto;
  }

  .site-header .top-bar.desktop-only {
    border-bottom: 1px solid #e5e5e5;
    padding: 1.375rem 1rem 1.125rem 1rem;
    font-size: 0.875rem;
  }

  .site-header .container .top-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .site-header .container .top-items .search-form {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    outline-offset: 0;
    outline-color: var(--wp--preset--color--super-dark-gray);
  }

  .site-header .container .top-items [type=search] {
    outline-offset: 0;
    outline-color: #ccc;
  }

  .site-header .container .top-items .search-form input {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-family: Arial;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1rem;
    width: 19.75rem;
    border: 1px solid #ccc;
    border-radius: 99999px;
  }

  .site-header .container .top-items .search-form button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    width: 24px;
    height: 24px;
    padding: 2px;
    justify-content: center;
    align-items: center;
  }

  .site-header .container .top-items .buttons-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .site-header .container .top-items a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .site-header .top-items .utility-link {
    font-size: 0.75rem;
    line-height: 1.125rem;
    font-weight: 700;
    color: var(--wp--preset--color--dark-blue);
    border-radius: 99999px;
    padding: 0.8125rem 1rem;
    border: 2px solid transparent;
  }

  .site-header .top-items .utility-link:hover,
  .site-header .top-items .utility-link:active,
  .site-header .top-items .utility-link:focus {
    color: var(--wp--preset--color--white);
    padding: 0.8125rem 1rem;
    background-color: var(--wp--preset--color--super-dark-gray);
    border: 2px solid var(--wp--preset--color--super-dark-gray);
  }

  .site-header .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.25rem;
  }

  .site-header .nav-menu > li {
    position: relative;
  }

  .site-header .nav-menu > li > a,
  .site-header .nav-menu > li.menu-item-object-page.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    color: var(--wp--preset--color--dark-blue);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.8125rem 0 0.8125rem 1rem;
  }

  .site-header .nav-menu > li.menu-item-object-page > a,
  .site-header .nav-menu > li.menu-item-object-page > a {
    padding-right: 1rem;
  }

  .site-header .nav-menu > li.menu-item-object-page > a:hover,
  .site-header .nav-menu > li.menu-item-object-page > a:active,
  .site-header .nav-menu > li.menu-item-object-page > a:focus,
  .site-header .nav-menu > li.current_page_item > a {
    background-color: var(--wp--preset--color--dark-blue);
    color: var(--wp--preset--color--white) !important;
    border-radius: 1.25rem;
  }

  .site-header .nav-menu > li.current_page_item > a::after {
    color: var(--wp--preset--color--white) !important;
    background-color: var(--wp--preset--color--white) !important;
    mask-image: url('../images/icon-menu-arrow-white.svg') !important;
  }

  .site-header .nav-menu > li.menu-item-type-custom > a:hover,
  .site-header .nav-menu > li.menu-item-type-custom > a:active,
  .site-header .nav-menu > li.menu-item-type-custom > a:focus,
  .site-header .nav-menu > li.menu-item-type-custom.open > a,
  .site-header .nav-menu > li.menu-item-object-page.menu-item-has-children > a:hover,
  .site-header .nav-menu > li.menu-item-object-page.menu-item-has-children > a:active,
  .site-header .nav-menu > li.menu-item-object-page.menu-item-has-children > a:focus,
  .site-header .nav-menu > li.menu-item-object-page.menu-item-has-children.open > a {
    background-color: var(--wp--preset--color--dark-blue);
    color: var(--wp--preset--color--white);
    border-radius: 1.25rem;
  }

  .site-header .nav-menu > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.5rem;
    margin-right: 1rem;
    background-color: var(--wp--preset--color--dark-blue);
    mask-image: url('../images/icon-menu-arrow.svg');
    mask-repeat: no-repeat;
    mask-size: contain;
    transition: transform 0.3s ease;
  }

  .site-header .nav-menu > li.menu-item-has-children > a:hover::after,
  .site-header .nav-menu > li.menu-item-has-children > a:active::after,
  .site-header .nav-menu > li.menu-item-has-children > a:focus::after,
  .site-header .nav-menu > li.menu-item-has-children.open > a:focus::after {
    background-color: var(--wp--preset--color--white) !important;
  }

  .site-header .nav-menu > li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
  }

  .site-header .main-nav {
    position: relative;
  }

  /* ------------------------------ Sticky navigation desktop ------------------------------ */
  .site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .site-header.sticky .top-bar.desktop-only {
    display: none; /* Hide when sticky */
  }

  .site-header.sticky .main-nav.desktop-only {
    display: none; /* Hide nav when sticky */
  }

  .site-header.sticky .top-bar.mobile-only {
    display: block !important;
    position: static;
    margin-bottom: 0;
    height: auto;
  }

  .site-header.sticky .mobile-header {
    height: auto;
  }

  .site-header.sticky .mobile-header .logo img {
    height: 2rem;
    width: auto;
  }

  /* Prevent content jump during transition */
  .site-header.sticky {
    transform: translateZ(0);
  }

  /* show mobile menu when header is sticky on desktop */
  .site-header.sticky .mobile-menu.active {
    display: block !important;
  }
  
  /* visible mobile menu toggle when sticky */
  .site-header.sticky .mobile-icons .menu-toggle {
    display: block !important;
  }

  .site-header.sticky .top-bar.mobile-only {
	  padding-right: 16px;
  }

  .site-header .sub-menu,
  .site-header .sub-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header .nav-menu > li.menu-item-has-children > .sub-menu {
    display: none;
  }

  /* Prevent the submenu from using <li> as positioning context */
  .site-header .nav-menu > li.menu-item-has-children {
    position: static;
  }

  .site-header .nav-menu > li.menu-item-has-children.open > .sub-menu {
    display: flex;
    gap: 6rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    padding: 2.5rem 2rem;
    z-index: 999;
    opacity: 0.98;
  }

  .site-header .mega-menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .site-header .mega-menu-heading {
    font-size: 2rem;
    line-height: 2.75rem;
    letter-spacing: -1px;
    font-weight: 400;
    color: #607188;
    margin-bottom: 0;
  }

  .site-header .mega-menu-heading-link {
    text-decoration: none;
  }
  
  .site-header .mega-menu-heading-link:hover {
    text-decoration: underline;
  }

  .site-header .mega-columns-wrapper {
    display: flex;
    gap: 6rem;
  }

  .site-header .mega-column {
    display: flex;
    flex-direction: column;
    min-width: 12.5rem;
    position: relative;
  }

  .site-header .mega-column:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3rem;
    width: 1px;
    background-color: #e0e0e0;
  }

  .site-header .sub-menu .mega-column {
    display: flex;
    flex-direction: column;
    min-width: 12.5rem;
    position: relative;
  }

  .site-header .sub-menu .mega-column:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3rem;
    width: 1px;
    background-color: #e0e0e0;
  }

  .site-header .sub-menu .menu-item > a,
  .site-header .sub-menu .mega-column .menu-item > a {
    display: block;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
    color: var(--wp--preset--color--dark-blue);
    text-decoration: none;
    margin: 0;
  }

  .site-header .sub-menu .mega-column .menu-item > a {
    margin-bottom: 0.75rem;
  }

  .site-header .sub-menu .mega-column .menu-item:last-of-type > a {
    margin-bottom: 0;
  }

  .site-header .sub-menu .mega-column .menu-item-type-custom.submenu-heading > a {
    font-size: 0.875rem;
    line-height: 1.75rem;
    font-weight: 400;
    color: #545454;
    text-transform: uppercase;
    text-decoration: none;
  }

  .site-header .sub-menu .mega-column .menu-item-type-custom.submenu-heading > a[href="#"] {
    pointer-events: none;
  }

  .site-header .sub-menu .mega-column .menu-item > a:hover {
    text-decoration: underline;
  }

  .site-header .account-toggle-desktop {
    display: inline-flex;
    align-items: center;  
    justify-content: center;
    gap: 0.125rem; 
    border-radius: 1.25rem;
    text-decoration: none;
    font-family: arial;
    font-size: 0.75rem !important;
    line-height: 1.25rem;
    font-weight: 700 !important;
    color: #171A1F;
    background-color: #FFCC00 !important;
    padding: 0.8125rem 1rem !important;
    border: 1px solid #FFCC00;
    border-radius: 99999px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .site-header .account-toggle-desktop .arrow-down img {
    margin-bottom: 0;
    margin-top: 0.125rem;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
  }

  .site-header .account-toggle-desktop[aria-expanded="true"] .arrow-down img {
    transform: rotate(360deg);
    margin-bottom: 0.125rem;
    margin-top: 0;
  }

  .site-header .account-toggle-desktop:hover,
  .site-header .account-toggle-desktop:active {
    background-color: var(--wp--preset--color--super-dark-gray) !important;
    color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--super-dark-gray);
  }

  .site-header .account-toggle-desktop:hover .arrow-down img,
  .site-header .account-toggle-desktop:active .arrow-down img {
    filter: brightness(0) invert(1);
  }

  .site-header .account-dropdown-desktop {
    position: absolute;
    top: 4.0625rem;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0.5rem;
    border: 1px solid #D3D3D6;
    background: #F4F4F6;
    z-index: 1000;
    min-width: 24.375rem;
  }

  .site-header .account-dropdown-desktop ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header .account-dropdown-desktop li {
    color: #1D5091;
    font-family: Arial;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem !important; 
    letter-spacing: 0.25px;
    display: flex;
    padding: 1rem 2rem;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid #D3D3D6;
  }

  .site-header .account-dropdown-desktop li:hover,
  .site-header .account-dropdown-desktop li:active,
  .site-header .account-dropdown-desktop li:first-of-type:hover,
  .site-header .account-dropdown-desktop li:first-of-type:active,
  .site-header .account-dropdown-desktop li:last-of-type:hover,
  .site-header .account-dropdown-desktop li:last-of-type:active {
    color: var(--wp--preset--color--white);
    background-color: var(--wp--preset--color--dark-blue);
  }

  .site-header .account-dropdown-desktop li:first-of-type {
    font-weight: 700;
    padding: 1rem;
  }

  .site-header .account-dropdown-desktop li:last-of-type {
    font-weight: 700;
    padding: 1rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    justify-content: flex-end;
    border-bottom: none;
  }
}

/* Footer */
.site-footer {
  width: 100vw;
  background: var(--wp--preset--color--dark-blue);
  color: var(--wp--preset--color--white);
  padding: 0;
}

.sponsor-wrapper:hover .sponsor-track {
  animation-play-state: paused;
}

.site-footer .sponsor-bar {
  overflow: hidden;
  background-color: white;
  padding: 2rem 0;
  border-top: 1px solid #D3D3D6;
}

.site-footer .sponsor-bar--names {
  padding: 1rem 0;
}

.site-footer .sponsor-track {
  display: flex;
  width: max-content;
  animation-name: scrollSponsors;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.site-footer .sponsor-logos,
.site-footer .sponsor-names {
  display: flex;
}

.site-footer .sponsor-logos + .sponsor-logos {
  margin-left: 0;
}

.site-footer .sponsor-logo img,
.site-footer .sponsor-logo-image {
  height: 3rem;
  max-width: none;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: none;
}

.site-footer .sponsor-logo {
  flex-shrink: 0;
  display: block;
  margin-right: 3rem;
}

.site-footer .company-name {
  flex-shrink: 0;
  margin-right: 3rem;
  font-size: 1rem;
  white-space: nowrap;
  color: #000;
  font-weight: 700;
  line-height: 1.25rem;
}

@keyframes scrollSponsors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

.site-footer .footer-top {
  flex-direction: column;
  width: 100vw;
  max-width: 1196px;
  padding: 5rem 1rem;
}

.site-footer .footer-section h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2rem !important;
  letter-spacing: -0.25px;
  margin: 0 !important;
}

.site-footer .footer-section p {
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.site-footer .footer-bottom {
  flex-direction: column;
  text-align: center;
  gap: 0.75rem;
}

.site-footer .footer-section {
  padding-bottom: 1rem;
}

.site-footer .footer-bottom {
  background: white;
  width: 100%;
  padding: 0;
}

.site-footer .footer-image-container {
  display: flex;
  align-items: center;
  padding: 2rem 2rem;
  max-width: 1196px;
  margin: 0 auto;
  width: 100%;
}

.site-footer .footer-image-container .spacer {
  flex-grow: 1;
}

.site-footer .footer-image-container img {
  height: 3rem;
  object-fit: contain;
  display: block;
}

.site-footer .email-link {
  text-decoration: none;
}

.site-footer .policy-link {
  font-weight: 700;
}

/* Prevent automatic link detection for payment information */
.site-footer .payment-info {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none !important;
  -webkit-text-decoration-skip: none;
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.site-footer .payment-info * {
  text-decoration: none !important;
  -webkit-text-decoration-skip: none;
  text-decoration-skip: none;
  pointer-events: none;
}

@supports (-webkit-touch-callout: none) {
  .site-footer .payment-info {
    -webkit-text-decoration-skip: none;
    text-decoration-skip: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    text-decoration: none !important;
    pointer-events: none;
  }
}

.site-footer .no-link {
  text-decoration: none !important;
  -webkit-text-decoration-skip: none;
  text-decoration-skip: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

@media (min-width: 768px) and (max-width: 1070px) {
  .site-footer .footer-top {
    display: flex;
    flex-direction: row;
    max-width: 716px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5rem 0;
    margin: 0 auto;
    gap: 0;
  }

  .site-footer .footer-section {
    flex: 1 1 100%;
    max-width: 34%;
  }

  .site-footer .footer-section h3 {
    font-size: 1.75rem;
    line-height: 2.5rem !important;
  }

  .site-footer .footer-image-container {
    padding: 2.5rem 1rem;
    max-width: 762px;
  }
}

@media (min-width: 1071px) {
  .site-footer .sponsor-bar {
    padding: 2.5rem 0;
  }

  .site-footer .sponsor-bar--names {
    padding: 1.21875rem 0;
  }

  .site-footer .company-name {
    margin-right: 4.96875rem;
  }

  .site-footer .footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 5rem 1.5rem;
    margin: 0 auto;
    gap: 5.6875rem;
  }

  .site-footer .footer-section p {
    max-width: fit-content !important;
    margin-left: 0 !important;
  }

  .site-footer .footer-section {
    flex: 1 1 100%;
    max-width: fit-content;
  }

  .site-footer .footer-section h3 {
    font-size: 1.75rem;
    line-height: 2.5rem !important;
  }

  .site-footer .footer-image-container {
    padding: 2.5rem 3.125rem;
  }
}

/** Author Container **/
.page-author-container {
  display: flex;
  max-width: calc(var(--wp--style--global--content-size) + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
  gap: 2rem;
  align-items: start;
}

.page-author-container .author-info.two-columns {
  display: inline-flex; 
  gap: 2rem;
  align-items: start;
}

.page-author-container .author-block {
  width: fit-content;
}

@media (max-width: 768px) {
  .page-author-container .author-info.two-columns {
      display: flex; 
      flex-direction: column;
      align-items: stretch;
      justify-content: start;

  }

  .page-author-container .author-block {
      width: 100%;
  }
}

.page-author-container .author-block p.author-heading {
  font-weight: 600;
  line-height: 2rem;
  margin: 0 0 0.25rem 0;
}

.page-author-container .author-block p.author-name {
  font-weight: 400;
  line-height: 2rem;
  margin: 0 0 0.25rem 0;
  color: #57575D;
}

.page-author-container .author-block p.author-email {
  line-height: 2rem;
  margin: 0 0 0.25rem 0;
}

.page-author-container .author-image img {
  width: 12.75rem;
  height: 12.75rem;
  object-fit: cover;
  object-position: top;
  border-top-left-radius: 0.5rem;
}

.page-author-container .author-info {
  flex: 1;
}

.page-author-container .author-info p {
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-weight: 400;
  width: 100% !important;
  max-width: 100% !important;
}

.page-author-container p.author-name {
  font-weight: 600;
  line-height: 1.5rem;
  margin: 0 0 0.25rem 0;
}

.page-author-container p.author-role {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #57575D;
  margin: 0 0 0.25rem 0;
}

.page-author-container p.author-email,
.page-author-container p.author-phone {
  line-height: 2rem;
  margin: 0 0 0.375rem 0;
}

.page-author-container p.author-description {
  color: #57575D;
  margin: 0.875rem 0 0 0;
}

@media (max-width: 768px) {
  .page-author-container {
      flex-direction: column;
      text-align: start;
  }

  .page-author-container .author-image img {
      width: 17.5rem;
      height: 17.5rem;
      object-fit: cover;
      object-position: top;
      border-top-right-radius: 0.5rem;
      margin: 0 auto;
  }

  .page-author-container .author-info {
      text-align: start;
  }

  .page-author-container .author-info p {
      width: 17.5rem !important;
  }

  .bdf-invoice-page p,
  .bdf-invoice-page td {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* Helpful plugin */
.daexthefup-container { 
  max-width: var(--wp--style--global--content-size); 
  padding: 2rem 1rem !important; 
  border-color: #D9E5ED !important; 
  border-width: 1px 0 !important;
}

.daexthefup-layout-side-by-side .daexthefup-feedback {
  align-items: center !important;
}

.daexthefup-comment-top-container { 
  margin-bottom: 0.25rem !important; 
} 

.daexthefup-title { 
  color: #202020 !important; 
  font-family: "Platform" !important; 
  font-size: 1.63rem !important; 
  font-weight: 500 !important; 
}

.daexthefup-comment-label, 
.daexthefup-comment-textarea, 
.daexthefup-successful-submission-text { 
  color: #202020 !important; 
  font-family: Arial !important; 
} 

.daexthefup-comment-label, 
.daexthefup-comment-character-counter-number, 
.daexthefup-successful-submission-text { 
  font-size: 1.25rem !important; 
} 

.daexthefup-comment-textarea { 
  font-size: 1.25rem !important; 
  margin: 0 0 1rem !important; 
} 

.daexthefup-comment-character-counter-number, 
.daexthefup-comment-textarea::placeholder { 
  color: #57575D !important; 
} 

.daexthefup-comment-submit { 
  background-color: var(--wp--preset--color--dark-blue) !important; 
  color: var(--wp--preset--color--white) !important; 
  padding: 0.75rem 1rem !important; 
  display: inline-block !important; 
  height: 2.75rem !important; 
  justify-content: center; 
  align-items: center; 
  border-radius: 99999px !important; 
  font-size: 1rem !important; 
  font-weight: 700 !important; 
  font-style: normal !important; 
  line-height: var(--cabb-line-height-ui) !important; 
  letter-spacing: 0.25px !important; 
  border: 2px solid var(--wp--preset--color--dark-blue) !important; 
}

.daexthefup-comment-cancel { 
  background-color: var(--wp--preset--color--white) !important; 
  color: var(--wp--preset--color--dark-blue) !important; 
  padding: 12px 16px !important; 
  display: inline-block !important; 
  height: 2.75rem !important; 
  justify-content: center;  
  align-items: center; 
  border-radius: 99999px !important; 
  font-size: 1rem !important; 
  font-weight: 700 !important; 
  font-style: normal !important; 
  line-height: var(--cabb-line-height-ui) !important; 
  letter-spacing: 0.25px !important; 
  border: 2px solid var(--wp--preset--color--dark-blue) !important; 
}

.daexthefup-comment-submit:hover,  
.daexthefup-comment-cancel:hover { 
  color: var(--wp--preset--color--white) !important; 
  background-color: var(--wp--preset--color--super-dark-gray) !important; 
  border-color: var(--wp--preset--color--super-dark-gray) !important; 
  opacity: 1 !important; 
} 

.daexthefup-yes:hover, 
.daexthefup-no:hover { 
  opacity: 1 !important; 
}

.daexthefup-yes:hover .daexthefup-icon-primary-color,
.daexthefup-yes-selected .daexthefup-icon-primary-color {
  fill: #7db340 !important;
}

.daexthefup-yes:hover .daexthefup-icon-secondary-color, 
.daexthefup-yes-selected .daexthefup-icon-secondary-color {
  fill: #397038 !important;
}

.daexthefup-no:hover .daexthefup-icon-primary-color, 
.daexthefup-no-selected .daexthefup-icon-primary-color {
  fill: #e89795 !important;
}

.daexthefup-no:hover .daexthefup-icon-secondary-color, 
.daexthefup-no-selected .daexthefup-icon-secondary-color {
  fill: #94322c !important;
}
/* End Helpful plugin styling */ 

/* Hide products block on shop page */
.woocommerce-shop .woocommerce.columns-4 {
    display: none;
}

.error404 {
  text-align: start !important;
}

.error404 .site-content {
  max-width: 800px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.error404 .site-content .inner {
  padding: 2rem 1rem !important;
}

.error404 .wp-block-button.is-style-primary .wp-block-button__link {
  display: inline !important;
}

.error404 .wp-block-button.is-style-primary .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--super-dark-gray);
}