@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --red: #f32232;
  --red-dark: #d90e1e;
  --black: #0b0d10;
  --dark: #11151b;
  --text: #17191d;
  --muted: #70757d;
  --line: #e8e9ec;
  --bg: #f7f8fa;
  --white: #fff;
  --header: 64px;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(15, 18, 24, .06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

img, svg { display: block; }

.sprites {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }

button { font: inherit; }

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.container {
  width: min(1080px, calc(100% - 32px));
  margin-inline: auto;
}

#services,
#pricing,
#stores,
#contact,
#home {
  scroll-margin-top: calc(var(--header) + 12px);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 45px;
  background: rgba(11, 13, 16, .96);
}

.nav {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.3px;
  white-space: nowrap;
}
.logo img{
  width: 35px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 10px;
}

.dot { color: var(--red); }

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.menu a {
  color: #c9cbd0;
  font-size: 14px;
  font-weight: 600;
}

.menu a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: background .15s, transform .15s;
}

.btn:hover { background: var(--red-dark); }
.btn:active { transform: scale(.98); }

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  margin-left: 8px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
}

.btn-ghost:hover { background: rgba(255,255,255,.08); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.menu-toggle span { transition: transform .15s, opacity .15s; }

/* Hero */
.hero {
  color: #fff;
  background:
    radial-gradient(circle at 85% 40%, rgba(243,34,50,.18), transparent 32%),
    linear-gradient(120deg, #080b0f, #121820 55%, #080b0f);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  padding: 25px 0 48px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #b8bec6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.hero h1 span { color: var(--red); }

.hero-location {
  margin: 12px 0 20px;
  color: #c5cad0;
  font-size: 15px;
}

.hero-features {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    grid-auto-flow: column;
}

.hero-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.hero-features .icon { color: var(--red); margin-top: 2px; }

.hero-features strong,
.hero-features span { display: block; }

.hero-features strong { font-size: 13px; }
.hero-features span { margin-top: 2px; color: #9aa2ab; font-size: 12px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.phone-frame {
  width: 168px;
  height: 300px;
  padding: 10px;
  border-radius: 32px;
  border: 5px solid #2a3138;
  background: linear-gradient(160deg, #3a424c, #0c1014);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}

.phone-screen {
  height: 100%;
  border-radius: 22px;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(160deg, #1c242c, #0a0c10);
}

.phone-screen span {
  font-size: 22px;
  font-weight: 800;
}

.phone-screen small {
  margin-top: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Trust */
.trust {
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
}

.trust-intro h2 {
  margin: 0 0 6px;
  font-size: 16px;
}

.trust-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-item .icon {
  color: var(--red);
  margin-bottom: 8px;
}

.trust-item strong,
.trust-item span { display: block; }

.trust-item strong { font-size: 14px; }
.trust-item span { margin-top: 2px; color: var(--muted); font-size: 13px; }

/* Sections */
.section { padding: 25px 0; }

.section-heading {
  margin-bottom: 15px;
}

.section-heading p {
  margin: 0;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.6px;
}

.service-grid,
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.service-card,
.store-card {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 10px;
  color: var(--red);
  background: rgba(243,34,50,.06);
  border: 1px solid rgba(243,34,50,.16);
}

.service-card h3,
.store-card h3 {
  margin: 0 0 3px;
  font-size: 16px;
}

.service-card p,
.store-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card a,
.store-card a {
     display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
}

.service-card a:hover,
.store-card a:hover { color: var(--red-dark); }

/* Pricing */
.pricing-section {
  background: #ffffff;
  padding-block: 48px;
}

.pricing-box {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.pricing-box img{
width: 100%;
}
.pricing-box a{
  display: inline-block;
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        color: inherit;
        text-decoration: revert;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tablinks {
display: flex;
    min-height: 44px;
    padding: 0 40px;
    border: 0;
    border-radius: 999px;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
  justify-content: center;
}

.tablinks.active {
  color: #fff;
  background: var(--red);
}

.tab:not(.active):hover { background: var(--line); }

.panel[hidden] { display: none; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  padding: 10px 5px;
  text-align: center;
}

th {
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

td { 
  white-space: nowrap; 
   }

td:last-child {
  text-align: center;
  white-space: nowrap;
}
table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Dòng chẵn */
table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}
table tbody tr:hover{
    background-color: #d0d0d099;
}

.price-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-note .icon { color: var(--red); margin-top: 2px; }
.price-note strong { color: var(--text); }

/* Stores */
.store-tag {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.store-card h3 { margin-top: 0; }

.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 0;
  padding: 16px 20px;
  list-style: none;
  color: #fff;
  border-radius: 14px;
  background: var(--black);
}

.promise li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.promise .icon { color: var(--red); }

.promise strong,
.promise span { display: block; }

.promise strong { font-size: 14px; }
.promise span { color: #9aa2ab; font-size: 13px; }

/* Footer */
.footer {
  padding: 40px 0 24px;
  background: var(--dark);
  color: #c9cbd0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 24px;
}

.footer h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; }

.footer-grid a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.footer-grid a:hover { color: #fff; }

.copyright {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #8b9098;
  font-size: 13px;
}
.imgbaner{
      border-radius: 30px;
      width: 400px;
}
.call-bar { display: none; }
.box-danhmuc { display: none; }
.my-table{
  border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #f32232;
}
table tbody tr:first-child{
    background-color: #d0d0d0;
    font-size: 17px;
}


.menudesk{
    width: 100%;
    display: flex;
    justify-content: center;
    background: #151619;
    flex-direction: column;
    align-items: center;
}
.menudesk span{
  color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
  nav {
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: space-around;
    height: 70px;
  }
  nav a {
    text-decoration: none;
    color: #fff;
    display: block;
  }

  .primary {
    width: min(1080px, calc(100% - 32px));
    margin-inline: auto;
    display: flex;
    list-style: none;
    position: relative;
    text-align: left;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
  }
.primary button{
  background: none;
  border: none;
}
  .primary .son {
        display: flex;
    width: 100%;
    margin: 0 8px;
    flex-direction: column;
    align-items: center;
    padding: 5px 0px;
  }
  .primary .son input {
    display: flex;
    width: 77px;
    height: 32px;
    align-items: center;
  }
  nav li {
    float: left;
  }

  /* clear'n floats */
  ul:after {
    clear: both;
  }

  ul:before,
  ul:after {
    display: table;
  }
  /* prime */
  .primary .son a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding-top: 5px;
    white-space: nowrap;
  }
  .primary .son span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding-top: 5px;
    white-space: nowrap;
    font-weight: normal;
    margin-bottom: 0;
  }

  .primary div:last-child a {}

.primary div:hover a {

}
.imgicon{
  height: 30px;
  filter: invert(100%);
}

/* subs */
ul.sub {
  display: block;
  background: #151619e6;
  backdrop-filter: blur(5px);
  left: 0;
  top: 100%;
  position: absolute;
  z-index: 200;
  width: 100%;
  transform: scaleY(0);
  /*transform: none;*/
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  border-radius: 20px;
  border: 1px solid #ffffff3d;
  margin: 15px 0 0;
  padding: 0;
}

ul.sub li {
  float: none;
  margin: 20px 0 30px;
  width: 20%;
}

ul.sub li a {
  border-right: none;
  color: #000;
  padding: 0;
}

ul.sub li:last-child a {
  border-bottom: none;
}

ul.sub li:hover {
  color: #000;
  transform: scale(1.1);
}
/* sub display*/
.primary .son:hover ul {
  transform: none;
}
/* keeps the tab background white */
.primary .son:hover {
  background: #fff;
  border-radius: 15px;
}

.primary .son:hover a {
  color: black;
}
.primary .son:hover > span {
  color: black;
}
.primary .son:hover > .imgicon {
  filter: invert(0%);
}
.blog-noidungmenu {
  width: 100%;
  display: block;
  overflow: hidden;
}
.blog-tieudemenu {
  display: flex;
  width: 100%;
  height: 80px;
  position: relative;
  top: 80px;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  align-items: center;
  justify-content: center;
}
.linemenu {
  background: #fff;
  width: 1px;
  height: 40px;
}
.blog-tieudemodel {
  display: flex;
  width: 100%;
  height: 45px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  align-items: flex-end;
  justify-content: center;
}
.blog-pr-noidungmenu {
  display: flex;
  overflow: hidden;
  text-align: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 0 10px;
}
.blog-pr-noidungmenu li {
  width: 200px;
}
.blog-pr-noidungmenu li img {
  max-height: 80px;
  margin-bottom: 10px;
}
.blog-pr-noidungmenu hr {
  border: 0;
  border-top: 0.5px solid #4e4e4e;
  margin-top: 0;
  margin-bottom: 0;
}
.pr-noidungmenu li .title {
  width: max-content;
  font-weight: bold;
  font-size: 16px;
}
.blog-pr-noidungmenu li .pr-title {
  width: max-content;
  margin: 6px 0 0 10px;
}
.blog-pr-noidungmenu li span {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}
.hinhmenu {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hinhmenu a {
  background: none;
}
.hinhmenu a:hover {
  background: transparent;
}
.chumenu {
  display: flex;
  width: 100%;
  font-weight: bold;
  font-size: 37px;
  padding: 0;
  justify-content: center;
}

@media (max-width: 980px) {
  .menu-toggle { display: none; place-content: center; }

  .menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header) + 8px);
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    background: #0e1116;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
  }

  .menu.open { display: flex; }

  .menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
  }

  .menu a:hover { background: rgba(255,255,255,.06); }

  .site-header .btn-small { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 32px;
  }

  .hero h1 { max-width: none; }

  .hero-visual { display: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-intro { grid-column: 1 / -1; }

  .service-grid,
  .store-grid,
  .promise { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }


 
}
@media (max-width: 640px) {
  :root { --header: 56px; }

  body { padding-bottom: 72px; }

  .container { width: calc(100% - 24px); }

  .hero-features { gap: 10px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .section { padding: 10px 0; }

  .section-heading h2 { font-size: 22px; }

  .pricing-box { padding: 20px 16px; }

  .tabs { flex-wrap: nowrap; overflow-x: auto; }
  .tab { flex: 1 0 auto; }

  .toggle-btn{
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #00000000;
    color: #fff;
    padding: 0;
    border: 0px;
  }
.menudesk{
  display: none;
}
.menu-bar{
  display: flex;
    flex-direction: column;
    align-items: center;
}
.box-danhmuc {
        display: flex;
        overflow: hidden;
        position: fixed;
        left: 12px;
        right: 12px;
        justify-content: space-evenly;
        z-index: 50;
        border-radius: 30px;
        border: 1px solid #ffffff40;
        bottom: 70px;
        transform-origin: bottom left;
        transform: scale(0.05) translateY(30px);
        opacity: 0;
        backdrop-filter: blur(5px);
        background: #000000a1;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
        flex-direction: column-reverse;
  }
.box-danhmuc.show{
   transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
  .box-danhmuc .logo-danhmuc {
    display: block;
    overflow: hidden;
    margin: 30px auto 20px;
    text-align: center;
  }
  .box-danhmuc {
    .logo-danhmuc {
      img {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
      }
    }
  }
.menulinks {
  float: left;
  width: calc(100% / 3 - 10px);
  margin: 5px 0px;
  border-radius: 50px;
  padding: 5px 10px;
  height: auto;
  position: relative;
}
.menulinks.active {
  border: 1px solid #F44336;
  background: #323232;
  height: fit-content;
  border-radius: 50px;
  padding: 5px 10px;
  box-shadow: -2px -2px 6px rgba(134, 134, 134, 0.2)
  , 2px 2px 6px rgba(28, 28, 28, 0.4);
}
  .choose-cate {
        display: flex;
        overflow-y: auto;
        margin: 5px;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        background: #00000063;
        border-radius: 100px;
        padding: 5px 5px;
  }
  .choose-cate div{
    width: auto;
  }

  .choose-cate div:hover {
    border-radius: 50px;
    box-shadow: -2px -2px 6px rgba(134, 134, 134, 0.2)
    , 2px 2px 6px rgba(28, 28, 28, 0.4);
  }
  .choose-cate div a {
    display: block;
    overflow: hidden;
  }
  .choose-cate div .img-catesp {
    display: block;
    overflow: hidden;
  }
  .choose-cate div .img-catesp img {
    display: block;
    width: 100%;
  }
  .choose-cate div span {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 15px;
  }
  .choose-cate div .cateiphone {
    width: 70px;
    margin: 18px auto;
  }
  .choose-cate div .catemac {
    width: 100px;
    margin: 30px auto;
  }
  .choose-cate div .cateipad {
    width: 77px;
    margin: 28px auto;
  }
  .choose-cate div .catewatch {
    width: 88px;
    margin: 38px auto;
  }
  .choose-cate div .cateisound {
    width: 115px;
    margin: 27px auto;
  }
  .choose-cate div .catephukien {
    width: 82px;
    margin: 24px auto;
  }
 .menuchu {
   height: 400px;
   display: flex;
        overflow: hidden;
        flex-wrap: wrap;
        border-radius: 20px;
  }
  .noidungmenu {
    display: block;
    // background: #323232;
    overflow: hidden;
  }
  .tieudemenu {
    display: flex;
        width: 100%;
        color: #fff;
        padding: 10px 0px;
        font-weight: bold;
        font-size: 14px;
        align-items: center;
        justify-content: center;
  }
  .pr-noidungmenu {
        text-align: center;
        margin: 0px 10px;
        display: flex;
        padding: 0;
        flex-wrap: wrap;
  }
  .pr-noidungmenu li {
        display: flex;
        text-align: center;
        padding-bottom: 10px;
        flex-direction: row;
        align-items: center;
        width: 50%;
  }
  .pr-noidungmenu li img {
        width: 50px;
  }
  .pr-noidungmenu hr {
    border: 0;
    border-top: 1px solid #4e4e4e;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15px;
  }
  .pr-noidungmenu li .title {
    width: fit-content;
    font-size: 13px;
  }
  .pr-noidungmenu li .pr-title {
    width: max-content;
    margin: 6px 0 0 10px;
  }
  .pr-noidungmenu li span {
    margin-left: 10px;
        display: block;
        overflow: hidden;
        color: #fff;
        font-size: 13px;
        line-height: 20px;
        text-align: left;
  }
  .call-bar {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 5px;
        z-index: 40;
        min-height: 60px;
        border-radius: 100px;
        background: #00000094;
        border: 1px solid #ffffff40;
        backdrop-filter: blur(5px);
        color: #fff;
        font-size: 14px;
  }
  .call-bar a{
        display: flex;
    flex-direction: column;
    align-items: center;
  }
  .call-bar img{
    height: 25px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
table tbody tr:first-child{
    background-color: #d0d0d0;
  font-size: 14px;
}
  .tablinks {
display: flex;
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
  width: 100%;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .menu-toggle span { transition: none; }
  
}
