/* ====================== GLOBAL STYLES ====================== */

/* Body text */
/* body, p, li, span {
  color: #59595c;
  font-family: inherit;
} */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #ae4654;
} 

/* Links */
a {
  color: #ae4654;
  text-decoration: none;
}
a:hover {
  color: #ff6600;
}

/* ====== MENU OVERRIDES ====== */
/* .hs-menu-wrapper > ul > .hs-menu-item {
    margin-right: 20px;
}
.hs-menu-wrapper > ul > .hs-menu-item:last-child {
    margin-right: 0;
}
.hs-menu-wrapper a,
.hs-menu-wrapper a:link,
.hs-menu-wrapper a:visited {
    color: #ae4654 !important;
}
.hs-menu-wrapper a:hover,
.hs-menu-wrapper a:focus,
.hs-menu-wrapper .active > a,
.hs-menu-wrapper .active-branch > a {
    color: #ae4654 !important;
}

/* Button overrides */
.in-btn.in-btn--outlined-dark {
  border-color: #ae4654 !important;
  color: #ae4654 !important;
}
.in-btn.in-btn--outlined-dark:hover,
.in-btn.in-btn--outlined-dark:focus {
  background-color: #ae4654 !important;
  color: #ffffff !important;
}
.hs-form input.hs-button.primary {
    background-color: #ae4654 !important;
    color: #ffffff !important;
    border-color: #ae4654 !important;
} */

/* ====================== MOBILE HEADER ====================== */
/* @media (max-width: 767px) {
  /* Hide original desktop header */
/*   .in-header,
  .in-header__wrap,
  header.in-header {
    display: none !important;
  } */

  /* Show custom mobile header */
/*   .mobile-header-section {
    display: block;
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 9999;
    padding: 6px 12px;
    box-sizing: border-box;
  }

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

  .mobile-logo img {
    max-height: 48px;
    height: auto;
    width: auto;
  }

  .mobile-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .mobile-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
  }

  .mobile-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #000;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }

  .mobile-hamburger.active span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
  }
  .mobile-hamburger.active span:nth-child(2) {
      opacity: 0;
  }
  .mobile-hamburger.active span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    margin-top: 12px;
    text-align: center;
  }
  .mobile-menu.active {
    display: block;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu li {
    margin: 8px 0;
  }
  .mobile-menu a {
    display: inline-block;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
  }
  .mobile-menu a:hover {
    color: #ae4654;
  }

  .mobile-search-bar {
    display: none;
    margin-top: 12px;
  }
  .mobile-search-bar.active {
    display: block;
  }
  .mobile-search-bar input[type="text"] {
    width: 85%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
}
 */
/* Hide mobile header on desktop */
/* @media (min-width: 768px) {
  .mobile-header-section {
    display: none !important;
  }
} */