/* [project]/app/(header and footer)/Header.module.css [app-client] (css) */
.Header-module__wNR_Fq__header {
  --headerHeight: 75px;
  height: var(--headerHeight);
  z-index: 10050;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
  overflow: visible;
}

.Header-module__wNR_Fq__inset {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 768px) {
  .Header-module__wNR_Fq__inset {
    padding-left: 24px;
    padding-right: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .Header-module__wNR_Fq__inset {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (min-width: 1280px) {
  .Header-module__wNR_Fq__inset {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media screen and (min-width: 1535px) {
  .Header-module__wNR_Fq__inset {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.Header-module__wNR_Fq__shell {
  max-width: var(--layout-max-content-width);
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  overflow: visible;
}

.Header-module__wNR_Fq__logo {
  flex-shrink: 0;
  align-items: center;
  min-width: 0;
  display: flex;
}

.Header-module__wNR_Fq__logo svg {
  width: 175px;
  height: auto;
  aspect-ratio: var(--a2a-logo-aspect-ratio);
  display: block;
}

@media screen and (min-width: 768px) {
  .Header-module__wNR_Fq__logo svg {
    width: 200px;
  }
}

.Header-module__wNR_Fq__endCluster {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
  overflow: visible;
}

.Header-module__wNR_Fq__desktopNav {
  min-width: 0;
  height: var(--headerHeight);
  min-height: var(--headerHeight);
  max-height: var(--headerHeight);
  z-index: 20;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 4px;
  display: flex;
  position: relative;
  overflow: visible;
}

@media screen and (min-width: 1024px) {
  .Header-module__wNR_Fq__desktopNav .MuiAccordion-root:before {
    display: none !important;
  }
}

.Header-module__wNR_Fq__desktopNav > * {
  flex-shrink: 0;
}

.Header-module__wNR_Fq__ctaRow {
  z-index: 1;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  display: flex;
  position: relative;
}

.Header-module__wNR_Fq__ham {
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  margin: 0;
  padding: 0 16px;
  line-height: 0;
  display: none;
}

@media screen and (max-width: 1023px) {
  .Header-module__wNR_Fq__ham {
    justify-content: center;
    align-items: center;
    padding-left: 4px;
    padding-right: 0;
    display: flex;
  }

  .Header-module__wNR_Fq__mobileNavCtas {
    box-sizing: border-box;
    border-top: 1px solid #e6e6e6;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
    padding-top: 28px;
    display: flex;
  }

  .Header-module__wNR_Fq__mobileNavPanel {
    min-width: 100%;
    min-height: calc(100vh - var(--headerHeight));
    max-height: calc(100vh - var(--headerHeight));
    max-height: calc(100dvh - var(--headerHeight));
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    left: 0;
    right: 0;
    top: var(--headerHeight);
    box-sizing: border-box;
    background-color: #fff;
    align-items: flex-start;
    padding: 40px;
    transition: opacity .2s;
    position: absolute;
    overflow: hidden auto;
  }

  .Header-module__wNR_Fq__mobileNav {
    flex-direction: column;
    width: 100%;
    display: flex;
    height: auto !important;
  }

  .Header-module__wNR_Fq__header .MuiAccordionDetails-root {
    background: var(--Pale-Blue_A2A, #f5f8fd);
    border: none;
    border-radius: 32px;
    width: 14em;
    margin: 0 auto;
  }

  .Header-module__wNR_Fq__header .MuiAccordion-root:before {
    display: none;
  }

  .Header-module__wNR_Fq__header .MuiAccordionSummary-content {
    justify-content: center;
    display: flex;
  }

  .Header-module__wNR_Fq__navHidden {
    opacity: 0;
    pointer-events: none;
  }
}

.Header-module__wNR_Fq__header .MuiAccordionSummary-content {
  text-transform: uppercase;
}

.Header-module__wNR_Fq__login {
  font-size: 1em;
  font-weight: 300;
}

/* [project]/app/components/Button.module.css [app-client] (css) */
.Button-module__Nm1E8a__button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid #0000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5em 1.2em;
  font-weight: 600;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
  transform: translateY(0);
}

.Button-module__Nm1E8a__button.Button-module__Nm1E8a__fullWidth {
  width: 100%;
}

.Button-module__Nm1E8a__button:hover:not(:disabled):not(.Button-module__Nm1E8a__disabled) {
  transform: translateY(.15em);
  box-shadow: .15em .15em 0 0 var(--shadow-color, rgb(var(--primaryLight))) !important;
}

.Button-module__Nm1E8a__button:active:not(:disabled):not(.Button-module__Nm1E8a__disabled) {
  transform: translateY(.2em);
  box-shadow: .1em .1em 0 0 var(--shadow-color, rgb(var(--primaryLight))) !important;
}

.Button-module__Nm1E8a__button:disabled, .Button-module__Nm1E8a__button.Button-module__Nm1E8a__disabled {
  cursor: default;
  transition: none;
}

.Button-module__Nm1E8a__button:disabled:hover, .Button-module__Nm1E8a__button.Button-module__Nm1E8a__disabled:hover {
  transform: none !important;
}

.Button-module__Nm1E8a__button:focus-visible {
  outline-offset: 0;
}

/* [project]/app/(header and footer)/NavItem.module.css [app-client] (css) */
.NavItem-module__QpJ7gq__navItem {
  box-shadow: none !important;
  background-color: #0000 !important;
}

.NavItem-module__QpJ7gq__navItem * {
  text-wrap: nowrap !important;
  background-color: #0000 !important;
  font-weight: 600 !important;
}

.NavItem-module__QpJ7gq__navItem .MuiAccordionSummary-content {
  margin: 0 !important;
}

.NavItem-module__QpJ7gq__summary {
  height: var(--headerHeight);
  font-size: 1em;
  margin: 0 auto !important;
}

@media screen and (min-width: 1024px) {
  .NavItem-module__QpJ7gq__navItem {
    overflow: visible !important;
  }

  .NavItem-module__QpJ7gq__navItem.Mui-expanded {
    z-index: 20;
    position: relative;
  }

  .NavItem-module__QpJ7gq__dropDown {
    margin-top: 1px;
  }
}

.NavItem-module__QpJ7gq__dropDown {
  border: 1px solid #b9b9b9;
  border-top: none;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  flex-direction: column;
  align-items: center;
  display: flex;
  background-color: #fff !important;
  padding: 1em !important;
}

.NavItem-module__QpJ7gq__dropDown a {
  color: rgb(var(--primary));
  padding: .5em 0;
  font-size: 1em;
  font-weight: 600;
}

.NavItem-module__QpJ7gq__summary a {
  margin: 0 10px;
}

/*# sourceMappingURL=app_0siccl~._.css.map*/