@charset "UTF-8";
/* ===== SELLVIA TOP NAV (remake) =====
   Loaded after css/sections/top-menu.css, which stays in place: it still owns
   #top-menu itself (sticky bar, background, border) and the per-page modifier
   classes (white-links, black, ...) incl. the logo swapping. Everything here is
   sv-* prefixed so it cannot leak into other components. */
:root {
  --sv-blue: #1971c2;
  --sv-blue-d: #155a9c;
  --sv-yellow: #ffb200; 
  --sv-yellow-d: #e6a100;
  --sv-dark: #1a1e25;
  --sv-text2: #4b5159;
  --sv-muted: #9ea0ac;
  --sv-panel: #f5f7f9;
  --sv-border: #eff2f5;
  --sv-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@keyframes svNavOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Respect the OS "reduce motion" setting: keep the menu fully usable, just
   without the fades and slides. */
@media (prefers-reduced-motion: reduce) {
  .sv-nav,
  .sv-dd,
  .sv-trigger svg,
  .sv-burger span {
    transition: none !important;
  }
  .sv-dd {
    transform: none !important;
  }
  body.sv-menu-open .sv-nav-inner {
    animation: none !important;
  }
}
/* The sticky bar, background and bottom border come from #top-menu — the nav
   must NOT re-declare them or it would double the chrome and break the
   per-page header treatments. */
.sv-nav {
  position: static;
  background: transparent;
  border-bottom: 0;
  font-family: var(--sv-font);
  /* the sticky shadow used to snap in the moment the page scrolled */
  transition: box-shadow 0.3s ease;
}

.sv-nav.scrolled {
  box-shadow: 0 2px 10px rgba(26, 70, 112, 0.1);
}

.sv-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
  height: 74px;
}

.sv-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 70px;
}

/* NOTE: no `display` here on purpose — top-menu.css toggles which of the three
   logo variants is visible per header modifier class. */
.sv-logo img {
  height: 32px;
  width: auto;
}

.sv-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sv-links > li {
  position: relative;
  margin-right: 35px;
}

.sv-links > li > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--sv-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 26px 0;
  transition: color 0.2s;
}

.sv-links > li > a:hover,
.sv-item.dd-open > .sv-trigger,
.sv-links > li > a[aria-current],
.sv-links > li.is-active > a {
  color: var(--sv-blue);
  font-weight: 700;
}

.sv-trigger svg {
  transition: transform 0.25s;
  opacity: 0.7;
}

.sv-item.dd-open > .sv-trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Hover underline removed by request — the active/open state is carried by the
   link colour (blue + bold) and the rotating chevron. */
/* position:relative so the legacy .menu-popup (absolute, right:0) anchors here */
.sv-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
}

.sv-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: var(--sv-dark);
  text-decoration: none;
  border: 1px solid var(--sv-dark);
  border-radius: 5px;
  padding: 0 25px;
  transition: opacity 0.2s;
}

.sv-login:hover {
  opacity: 0.7;
}

.sv-login-ic {
  flex-shrink: 0;
}

.sv-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: var(--sv-yellow);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 5px;
  width: 190px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.sv-cta:hover {
  background: var(--sv-yellow-d);
  color: #fff;
}

/* call-us mode: the CTA becomes a tel: link and needs to fit the number */
.sv-cta-call {
  width: auto;
  gap: 8px;
  padding: 0 20px;
  font-size: 16px;
  text-transform: none;
}

.sv-cta-call img {
  height: 18px;
  width: auto;
}

.sv-cta-call .m-text {
  font-weight: 400;
}

/* mobile-only call-us entry point (the CTA is hidden on the closed mobile bar) */
.sv-callus-mob {
  display: none;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  margin-right: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sv-dark);
  text-decoration: none;
  white-space: nowrap;
}

.sv-callus-mob img {
  height: 18px;
  width: auto;
}

/* dropdown */
.sv-dd {
  position: absolute;
  top: calc(100% - 2px);
  left: -20px;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(26, 70, 112, 0.15);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.35s;
  z-index: 100;
}

.sv-item.dd-open > .sv-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sv-dd::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  height: 9px;
}

.sv-dd-inner {
  padding: 20px 20px;
}

.sv-dd-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-blue);
  margin: 0 0 20px;
}

.sv-dd-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(268px, 1fr));
  gap: 0 16px;
}

.sv-dd-item {
  display: block;
  padding: 12px 16px;
  margin-bottom: 4px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.sv-dd-item:hover {
  background: #eef5fc;
}

.sv-dd-item:last-child {
  margin-bottom: 0;
}

.sv-dd-title {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: var(--sv-dark);
  transition: color 0.18s;
}

.sv-dd-item:hover .sv-dd-title {
  color: var(--sv-blue);
}

.sv-dd-desc {
  display: block;
  font-size: 13px;
  line-height: 19px;
  color: var(--sv-text2);
  margin-top: 6px;
}

.sv-dd-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 24px;
  background: var(--sv-panel);
  border-radius: 0 0 5px 5px;
}

.sv-dd-foot-note {
  font-size: 14px;
  font-weight: 400;
  color: var(--sv-text2);
}

.sv-dd-foot-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--sv-blue);
  text-decoration: none;
  white-space: nowrap;
}

.sv-dd-foot-link:hover {
  color: var(--sv-blue-d);
}

.sv-dd-learn {
  display: flex;
  gap: 0;
}

.sv-dd-group {
  box-sizing: border-box;
  width: 292px;
  padding: 0 24px;
}

.sv-dd-group:first-child {
  padding-left: 0;
}

.sv-dd-group:last-child {
  padding-right: 0;
}

.sv-dd-group .sv-dd-label {
  margin-bottom: 12px;
  padding-left: 16px;
}

.sv-dd-list {
  width: 100%;
}

.sv-dd-list .sv-dd-item {
  margin-bottom: 4px;
}

.sv-dd-list .sv-dd-item:last-child {
  margin-bottom: 0;
}

/* burger */
.sv-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid rgba(26, 30, 37, 0.15);
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sv-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sv-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.sv-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sv-burger.open span:nth-child(2) {
  opacity: 0;
}

.sv-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Per-page header modifiers (compat) =====
   ~150 landings put the header over a dark hero and switch it with a modifier
   class on #top-menu. top-menu.css only colours the OLD markup (ul.level-1 a,
   details summary, .log-in a.account), so the same treatments are mirrored here
   onto the sv-* elements. The logo swap keeps working from top-menu.css. */
#top-menu.white-links .sv-links > li > a,
#top-menu.white-links .sv-links > li > a:hover,
#top-menu.white-links .sv-item.dd-open > .sv-trigger,
#top-menu.blue-bg .sv-links > li > a,
#top-menu.blue-bg .sv-links > li > a:hover,
#top-menu.blue-bg .sv-item.dd-open > .sv-trigger,
#top-menu.gradient-black-bg .sv-links > li > a,
#top-menu.gradient-black-bg .sv-links > li > a:hover,
#top-menu.gradient-black-bg .sv-item.dd-open > .sv-trigger {
  color: #fff;
}
#top-menu.white-links .sv-login,
#top-menu.blue-bg .sv-login,
#top-menu.gradient-black-bg .sv-login {
  color: #fff;
  border-color: #fff;
}
#top-menu.white-links .sv-callus-mob,
#top-menu.blue-bg .sv-callus-mob,
#top-menu.gradient-black-bg .sv-callus-mob {
  color: #fff;
}
#top-menu.white-links .sv-burger,
#top-menu.blue-bg .sv-burger,
#top-menu.gradient-black-bg .sv-burger {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}
#top-menu.white-links .sv-burger span,
#top-menu.blue-bg .sv-burger span,
#top-menu.gradient-black-bg .sv-burger span {
  background: #fff;
}

@media (max-width: 1140px) {
  .sv-links > li {
    margin-right: 25px;
  }
}
@media (max-width: 991px) {
  .sv-burger {
    display: flex;
    position: relative;
    z-index: 210;
  }
  .sv-callus-mob {
    display: inline-flex;
  }
  .sv-nav-inner {
    height: 64px;
    padding: 0 20px;
  }
  .sv-logo {
    margin-right: 0;
  }
  /* closed bar: hide Log in + CTA, menu hidden */
  .sv-login,
  .sv-cta {
    display: none;
  }
  .sv-links {
    display: none;
  }
  /* OPEN — full-screen white overlay */
  body.sv-menu-open {
    overflow: hidden;
  }
  /* fade the overlay in — it used to pop into place instantly.
     Only opacity is animated on purpose: a transform here would turn the
     overlay into a containing block and drag the position:fixed burger with it. */
  body.sv-menu-open .sv-nav-inner {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 20px 20px 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 200;
    animation: svNavOverlayIn 0.24s ease-out both;
  }
  body.sv-menu-open .sv-logo {
    display: none;
  }
  body.sv-menu-open .sv-callus-mob {
    display: none;
  }
  body.sv-menu-open .sv-burger {
    position: fixed;
    top: 11px;
    right: 20px;
  }
  body.sv-menu-open .sv-right {
    display: contents;
  }
  body.sv-menu-open .sv-login {
    display: inline-flex;
    order: -2;
    flex-shrink: 0;
    align-self: flex-start;
    align-items: center;
    gap: 10px;
    height: auto;
    border: 0;
    border-radius: 0;
    padding: 0 0 4px;
    font-size: 18px;
    font-weight: 400;
    color: var(--sv-dark);
  }
  body.sv-menu-open .sv-login-ic {
    width: 20px;
    height: 20px;
  }
  body.sv-menu-open .sv-links {
    display: block;
    order: -1;
    flex-shrink: 0;
    margin: 8px 0 0;
    padding: 0;
  }
  body.sv-menu-open .sv-links > li {
    margin: 0;
  }
  body.sv-menu-open .sv-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--sv-dark);
    border-bottom: 1px solid var(--sv-border);
  }
  body.sv-menu-open .sv-trigger svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
  }
  body.sv-menu-open .sv-dd {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }
  body.sv-menu-open .sv-item.dd-open > .sv-dd {
    display: block;
  }
  body.sv-menu-open .sv-dd-inner {
    padding: 15px 0 10px;
  }
  body.sv-menu-open .sv-dd-inner.sv-dd-learn {
    padding: 0;
  }
  body.sv-menu-open .sv-dd-cols,
  body.sv-menu-open .sv-dd-learn {
    display: block;
  }
  body.sv-menu-open .sv-dd-item {
    padding: 10px 0;
    border-radius: 0;
    margin: 0;
  }
  body.sv-menu-open .sv-dd-desc {
    margin-top: 10px;
  }
  body.sv-menu-open .sv-dd-item:hover {
    background: transparent;
  }
  body.sv-menu-open .sv-dd-label {
    padding: 0;
    margin: 30px 0;
  }
  body.sv-menu-open .sv-dd-group {
    width: 100%;
    padding: 0;
  }
  body.sv-menu-open .sv-dd-group:last-child {
    border-left: 0;
    border-top: 1px solid var(--sv-border);
    margin-top: 20px;
    padding-top: 0;
  }
  body.sv-menu-open .sv-dd-foot {
    display: none;
  }
  /* CTA full-width at the bottom of the overlay */
  body.sv-menu-open .sv-cta {
    display: flex;
    order: 1;
    width: 100%;
    height: 60px;
    flex: 0 0 60px;
    margin-top: 24px;
  }
  body.sv-menu-open .sv-cta-call {
    width: 100%;
  }
  /* the side lead popup is desktop-only */
  body.sv-menu-open .menu-popup {
    display: none;
  }
  /* ===== Specificity guard =====
     top-menu.css carries `#top-menu a { display: block }` inside its own
     max-width:991px block. That selector is (1,0,1) and therefore beats every
     plain .sv-* class rule above, which otherwise leaves Log in and the CTA
     visible on the mobile bar and flattens the overlay rows. Re-assert the
     display values with the #top-menu prefix so they win the cascade. */
  #top-menu .sv-logo {
    display: flex;
  }
  #top-menu .sv-login,
  #top-menu .sv-cta {
    display: none;
  }
  #top-menu .sv-callus-mob {
    display: inline-flex;
  }
  body.sv-menu-open #top-menu .sv-login {
    display: inline-flex;
  }
  body.sv-menu-open #top-menu .sv-cta {
    display: flex;
  }
  body.sv-menu-open #top-menu .sv-links > li > a {
    display: flex;
  }
  body.sv-menu-open #top-menu .sv-dd-item {
    display: block;
  }
  body.sv-menu-open #top-menu .sv-callus-mob {
    display: none;
  }
  /* The open overlay is white, so the light-header treatment above must be
     undone inside it or the links would be white on white. */
  body.sv-menu-open #top-menu.white-links .sv-links > li > a,
  body.sv-menu-open #top-menu.white-links .sv-links > li > a:hover,
  body.sv-menu-open #top-menu.white-links .sv-item.dd-open > .sv-trigger,
  body.sv-menu-open #top-menu.white-links .sv-login,
  body.sv-menu-open #top-menu.blue-bg .sv-links > li > a,
  body.sv-menu-open #top-menu.blue-bg .sv-links > li > a:hover,
  body.sv-menu-open #top-menu.blue-bg .sv-item.dd-open > .sv-trigger,
  body.sv-menu-open #top-menu.blue-bg .sv-login,
  body.sv-menu-open #top-menu.gradient-black-bg .sv-links > li > a,
  body.sv-menu-open #top-menu.gradient-black-bg .sv-links > li > a:hover,
  body.sv-menu-open #top-menu.gradient-black-bg .sv-item.dd-open > .sv-trigger,
  body.sv-menu-open #top-menu.gradient-black-bg .sv-login {
    color: var(--sv-dark);
  }
  body.sv-menu-open #top-menu.white-links .sv-login,
  body.sv-menu-open #top-menu.blue-bg .sv-login,
  body.sv-menu-open #top-menu.gradient-black-bg .sv-login {
    border-color: transparent;
  }
  body.sv-menu-open #top-menu.white-links .sv-burger,
  body.sv-menu-open #top-menu.blue-bg .sv-burger,
  body.sv-menu-open #top-menu.gradient-black-bg .sv-burger {
    background: transparent;
    border-color: rgba(26, 30, 37, 0.15);
  }
  body.sv-menu-open #top-menu.white-links .sv-burger span,
  body.sv-menu-open #top-menu.blue-bg .sv-burger span,
  body.sv-menu-open #top-menu.gradient-black-bg .sv-burger span {
    background: var(--sv-dark);
  }
}

/*# sourceMappingURL=nav.css.map */
