      :root {
        --bg: #f5f7f8;
        --surface: #fff;
        --text: #163949;
        --muted: #6d8792;
        --line: #d7e7ee;
        --blue: #1ea8da;
        --yellow: #f6ad20;
        --yellow-dark: #e09a12;
        --shadow: 0 18px 50px rgba(8, 54, 72, 0.08);
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: "Manrope", sans-serif;
        background: var(--bg);
        color: var(--text);
      }
      .shell {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
      }
      .hero {
        position: relative;
        overflow: hidden;
        background: radial-gradient(
            circle at 86% 8%,
            rgba(255, 255, 255, 0.14) 0,
            rgba(255, 255, 255, 0.06) 17%,
            transparent 18%
          ),
          radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.06) 0, transparent 28%),
          linear-gradient(180deg, #1098cd 0%, #1292c7 100%);
        color: #fff;
      }
      .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
          radial-gradient(rgba(255, 255, 255, 0.18) 1.1px, transparent 1.1px);
        background-size:
          auto,
          22px 22px;
        background-position:
          0 0,
          0 0;
        opacity: 1;
      }
      .hero > * {
        position: relative;
        z-index: 1;
      }
      .nav-link {
        color: rgba(255, 255, 255, 0.76);
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        padding-bottom: 8px;
        position: relative;
      }
      .nav-link:hover,
      .nav-link.active {
        color: #fff;
      }
      .nav-link.active:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 24px;
        height: 3px;
        border-radius: 999px;
        background: var(--yellow);
      }
      .glass-pill,
      .trust-chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border-radius: 999px;
        font-weight: 700;
      }
      .glass-pill {
        padding: 10px 16px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.1);
        color: #dbf5ff;
        font-size: 14px;
        backdrop-filter: blur(8px);
      }
      .trust-chip {
        padding: 10px 14px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.06);
        font-size: 13px;
        color: #d9f3fd;
      }
      .btn-primary,
      .btn-secondary,
      .btn-light {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 54px;
        padding: 0 24px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 800;
        transition: 0.2s ease;
      }
      .btn-primary {
        background: var(--yellow);
        color: #12465c;
        box-shadow: 0 12px 28px rgba(246, 173, 32, 0.28);
      }
      .btn-primary:hover {
        background: var(--yellow-dark);
        transform: translateY(-1px);
      }
      .btn-secondary {
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.38);
      }
      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
      }
      .btn-light {
        background: #35c0ef;
        color: #08374a;
      }
      .btn-light:hover {
        background: #2bb4e2;
      }
      .price-card {
        background: #f8f7f6;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 28px 70px rgba(5, 58, 78, 0.18);
      }
      .price-head {
        background: linear-gradient(180deg, #0d708f 0%, #085b74 100%);
        color: #fff;
      }
      .price-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border-radius: 16px;
        padding: 18px 20px;
        font-weight: 800;
      }
      .row-us {
        background: #ece8e7;
        color: #5c6064;
      }
      .row-mx {
        background: #def1f9;
        color: #096f99;
      }
      .row-save {
        background: var(--yellow);
        color: #633b00;
        box-shadow: 0 10px 24px rgba(246, 173, 32, 0.25);
      }
      .section {
        padding: 84px 0;
      }
      .card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
      }
      .service-card {
        border-top: 4px solid #2eb9ea;
      }
      .icon-box {
        width: 72px;
        height: 72px;
        border-radius: 20px;
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        background: linear-gradient(180deg, #33bceb 0%, #1ea7d8 100%);
        color: white;
        box-shadow: 0 14px 28px rgba(30, 168, 218, 0.22);
      }
      .mini-kicker {
        color: var(--blue);
        text-transform: uppercase;
        letter-spacing: 0.28em;
        font-size: 12px;
        font-weight: 800;
            line-height: 25px;
      }
      .step {
        position: relative;
        z-index: 1;
        text-align: center;
      }
      @media (min-width: 1280px) {
        .step:not(:last-child)::after {
          content: "→";
          position: absolute;
          top: 25px;
          left: calc(100% + 16px);
          transform: translate(-50%, -50%);
          font-size: 4.5rem;
          line-height: 1;
          color: #9edcf2;
          z-index: 0;
          font-weight: 300;
        }
      }
      .step-icon {
        width: 68px;
        height: 68px;
        margin: 0 auto 16px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        border: 4px solid white;
        background: linear-gradient(180deg, #33bceb 0%, #1ea7d8 100%);
        color: white;
        box-shadow: 0 12px 24px rgba(30, 168, 218, 0.22);
        position: relative;
      }
      .step:nth-child(even) .step-icon {
        background: white;
        color: var(--blue);
        border: 2px solid #2cb7e8;
        box-shadow: none;
      }
      .step-no {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 30px;
        height: 30px;
        border-radius: 999px;
        background: var(--yellow);
        color: #6a4100;
        font-size: 13px;
        font-weight: 900;
        display: grid;
        place-items: center;
        border: 2px solid white;
      }
      .legal-box {
        background: #fff8ea;
        border: 1px solid #f4dfaa;
        color: #74571f;
        border-radius: 18px;
      }
      .footer-band {
        position: relative;
        overflow: hidden;
        background: linear-gradient(90deg, #062f3c 0%, #042a36 70%, #083847 100%);
        color: white;
      }
      .footer-band:after {
        content: "";
        position: absolute;
        right: -60px;
        top: -40px;
        width: 260px;
        height: 260px;
        border-radius: 999px;
        background: rgba(47, 187, 232, 0.12);
      }
      .footer-band > * {
        position: relative;
        z-index: 1;
      }
      details summary {
        list-style: none;
        cursor: pointer;
      }
      details summary::-webkit-details-marker {
        display: none;
      }

      .footer-band {
        position: relative;
        overflow: hidden;
        background: linear-gradient(90deg, #062f3c 0, #042a36 70%, #083847 100%);
        color: white;
      }
      .footer-band:after {
        content: "";
        position: absolute;
        right: -60px;
        top: -40px;
        width: 260px;
        height: 260px;
        border-radius: 999px;
        background: rgba(47, 187, 232, 0.12);
      }
      .footer-band > * {
        position: relative;
        z-index: 1;
      }
      @media (max-width: 960px) {
        .process-line {
          display: none;
        }
        .section {
          padding: 68px 0;
        }
      }
      .savings-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
        max-width: 900px;
        margin: 0 auto;
      }
      .savings-table thead tr {
        background: linear-gradient(180deg, #0d708f 0%, #0a5f79 100%);
      }
      .savings-table th {
        font-size: 13px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        padding: 16px 14px;
      }
      .savings-table thead tr th:first-child {
        border-radius: 16px 0 0 16px;
      }
      .savings-table thead tr th:last-child {
        border-radius: 0 16px 16px 0;
      }
      .savings-table td {
        padding: 16px 12px;
        vertical-align: middle;
        text-align: center;
        background: #fff;
        border-radius: 0;
      }
      .savings-table tr td:first-child {
        border-radius: 18px 0 0 18px;
        width: 60px;
      }
      .savings-table tr td:last-child {
        border-radius: 0 18px 18px 0;
      }
      .savings-table:not(.benefit-table) tbody tr {
        box-shadow: 0 2px 8px rgba(8, 54, 72, 0.06);
        border-radius: 18px;
      }
      .savings-table:not(.benefit-table) tbody tr:hover {
        box-shadow: 0 4px 16px rgba(8, 54, 72, 0.1);
      }
      .savings-table .savings-icon {
        width: 60px;
        padding: 0;
      }
      .savings-table .savings-icon .material-symbols-outlined {
        font-size: 26px;
        color: var(--blue);
        background: rgba(30, 168, 218, 0.1);
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
      }
      .cost-table tr td:first-child {
        font-size: inherit;
        width: auto;
      }
      .benefit-table tr:first-child td {
        border-radius: 16px !important;
        font-size: inherit;
      }
      .savings-treatment {
        font-weight: 800;
        color: #183b4a;
        text-align: left !important;
        font-size: 16px;
      }
      .savings-price {
        font-weight: 700;
        color: #096f99;
        white-space: nowrap;
        font-size: 15px;
      }
      .savings-price + .savings-price {
        color: #0d8f86;
      }
      .savings-badge {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        padding: 8px 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, #fef3d6, #fde8b0);
        color: #7a4b00;
        font-weight: 800;
        font-size: 15px;
        white-space: nowrap;
        text-decoration: none;
        transition: box-shadow .2s, transform .2s;
        cursor: pointer;
      }
      a.savings-badge:hover {
        box-shadow: 0 4px 14px rgba(122,75,0,.2);
        transform: translateY(-1px);
      }
      .badge-label {
        font-weight: 500;
        font-size: 12px;
        opacity: 0.7;
      }
      .benefit-table {
        border-collapse: separate;
        border-spacing: 0 12px;
      }
      .benefit-table .benefit-head {
        background: linear-gradient(180deg, #0d708f 0%, #0a5f79 100%) !important;
        color: #fff;
        border-radius: 16px 16px 0 0 !important;
        padding: 20px 24px;
        text-align: center;
        border: none;
      }
      .benefit-head-title {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-weight: 800;
        color: #fff;
        margin: 0;
      }
      .benefit-legend {
        margin-top: 12px;
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
      }
      .benefit-legend-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 999px;
        padding: 6px 14px;
        font-size: 13px;
        font-weight: 700;
      }
      .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        display: inline-block;
      }
      .dot-us { background: #0f8fae; }
      .dot-mx { background: #29b88e; }
      .dot-save { background: #f1b93d; }
      .benefit-icon {
        width: 60px;
        text-align: center;
        vertical-align: middle;
        background: #f7fbfd;
        border-radius: 16px 0 0 16px !important;
      }
      .benefit-icon .material-symbols-outlined {
        font-size: 28px;
        color: var(--blue);
      }
      .benefit-text {
        padding: 18px 14px;
        text-align: left;
        white-space: normal;
        font-weight: 800;
        font-size: 16px;
        color: #183b4a;
        background: #f7fbfd;
        border-radius: 0 16px 16px 0 !important;
      }
      .benefit-sub {
        display: block;
        font-weight: 400;
        font-size: 15px;
        color: #607985;
        margin-top: 4px;
      }
.step .material-symbols-outlined {
    font-size: 35px;
}
.font-60 {
    font-size: 60px;
}
.font-40 {
    font-size: 40px;
}

/* Decorative patterns */
.section-dots {
  position: relative;
}
.section-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cde3ec 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.section-dots > * {
  position: relative;
  z-index: 1;
}

.section-blob {
  position: relative;
  overflow: hidden;
}
.section-blob::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}
.section-blob > * {
  position: relative;
  z-index: 1;
}

.blob-tr::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(30,168,218,0.07) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}
.blob-bl::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(30,168,218,0.06) 0%, transparent 70%);
  bottom: -100px;
  left: -60px;
}
.blob-tl::after {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(30,168,218,0.05) 0%, transparent 70%);
  top: -80px;
  left: -60px;
}
.blob-br::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30,168,218,0.06) 0%, transparent 70%);
  bottom: -100px;
  right: -60px;
}

.accent-line {
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1da8da, #16b38f);
  margin-bottom: 16px;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}
.reveal-fade.visible {
  opacity: 1;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.05),rgba(0,0,0,0.05)), radial-gradient(rgba(255,255,255,0.18) 1.1px, transparent 1.1px);
  background-size: auto, 22px 22px;
  background-position: 0 0, 0 0;
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 639px) {
  #tratamientos .savings-table:not(.benefit-table) thead {
    display: none;
  }
  #tratamientos .savings-table:not(.benefit-table),
  #tratamientos .savings-table:not(.benefit-table) tbody,
  #tratamientos .savings-table:not(.benefit-table) tr,
  #tratamientos .savings-table:not(.benefit-table) td {
    display: block;
    width: 100%;
  }
  #tratamientos .savings-table:not(.benefit-table) tr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    padding: 16px;
  }
  #tratamientos .savings-table:not(.benefit-table) td {
    border-radius: 0 !important;
    background: transparent;
    text-align: left;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
  }
  #tratamientos .savings-table:not(.benefit-table) td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #6e8994;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    min-width: 100px;
    flex-shrink: 0;
  }
  #tratamientos .savings-table:not(.benefit-table) td.savings-icon {
    display: none;
  }
  #tratamientos .savings-table:not(.benefit-table) td.savings-treatment {
    font-size: 20px;
    padding: 0 0 10px 0;
  }
  #tratamientos .savings-table:not(.benefit-table) td.savings-treatment::before {
    display: none;
  }
  #tratamientos .savings-table:not(.benefit-table) td.savings-price {
    white-space: nowrap;
    font-size: 16px;
  }
  #tratamientos .savings-table:not(.benefit-table) td[data-label="Ahorro"] {
    padding-top: 10px;
  }
}

/* ==============================
   Contact Form 7 — adaptado al diseño ViaOdentis
   ============================== */
body .wpcf7-form {
  margin: 0;
}
.wpcf7-form p {
  margin: 0 0 16px 0;
  padding: 0;
}
.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #395564;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 16px !important;
  border: 1px solid #d4e5ec !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  font-family: inherit !important;
  background: #fff !important;
  outline: none !important;
  box-sizing: border-box !important;
  color: #163949 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-textarea:focus,
.wpcf7-form .wpcf7-select:focus {
  border-color: #1ea8da !important;
  box-shadow: 0 0 0 3px rgba(30,168,218,0.15) !important;
}
.wpcf7-form .wpcf7-textarea {
  min-height: 100px;
  resize: vertical;
}
.wpcf7-form .wpcf7-select {
  appearance: auto;
  background: #fff !important;
}
.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
  background: #f6ad20;
  color: #12465c;
  box-shadow: 0 12px 28px rgba(246,173,32,0.28);
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.wpcf7-form .wpcf7-submit:hover {
  background: #e09a12;
  transform: translateY(-1px);
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 13px;
  margin-top: 4px;
}
.wpcf7-form .wpcf7-response-output {
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 14px;
  margin: 16px 0 0 0;
}
.wpcf7-form .wpcf7-acceptance label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #5a7682;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.cf-row {
  display: inline-block  
  & .cf-col {
    display: inline-block;	
	}
  & .cf-col-50 {
    display: inline-block;
    width: 48%;
	}
}

a.cd-upload-btn {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 0px 15px;
  &:hover {
    background-color: #e09a12;
    color: #fff;
    border-color: #e09a12;
  }
}

table.savings-table {
  & .savings-icon > span > img {
    width: 70%;
    max-height: 35px;
  }
}

/* Dropdown menu */
.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-item-has-children {
  position: relative;
}
.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid #d7e7ee;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(8,54,72,.12);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}
.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #d7e7ee;
  border-top: 1px solid #d7e7ee;
}
.sub-menu-item {
  margin: 0;
}
.sub-nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #395564;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.sub-nav-link:hover,
.sub-nav-link.active {
  background: #eff8fc;
  color: #1ea8da;
}

/* Sticky header */
#site-header {
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
#site-header.header-scrolled {
  background: radial-gradient(circle at 86% 8%, rgba(255,255,255,0.14) 0, rgba(255,255,255,0.06) 17%, transparent 18%), radial-gradient(circle at 88% 20%, rgba(255,255,255,0.06) 0, transparent 28%), linear-gradient(180deg, #0f84b3 0%, #0f7aa5 100%) !important;
}
#site-header.header-scrolled .shell {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
#site-header.header-scrolled .custom-logo,
#site-header.header-scrolled a > img[style*="width:350px"] {
  width: 220px !important;
}

/* Back to top hover */
#back-to-top:hover {
  background: #e09a12 !important;
  transform: translateY(-2px) !important;
}

/* Mobile submenu */
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}
.mobile-menu-item {
  list-style: none;
  margin-bottom: 16px;
}
.mobile-menu-item:last-child {
  margin-bottom: 0;
}
.mobile-menu-item-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mobile-sub-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.mobile-sub-toggle.open {
  transform: rotate(90deg);
}
.mobile-sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-sub-menu.open {
  max-height: 400px;
}
.mobile-sub-menu .sub-nav-link {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.mobile-sub-menu .sub-nav-link:hover {
  color: #fff;
}

@media (max-width: 1279px) {
  .menu-item-has-children .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 8px;
  }
  .menu-item-has-children .sub-menu::before {
    display: none;
  }
  .sub-nav-link {
    color: rgba(255,255,255,0.76);
    font-size: 16px;
    text-align: center;
  }
  .sub-nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
}

