@font-face {
  font-family: Vazirmatn;
  src: url("/Vazirmatn.ttf") format("truetype");
  font-display: swap;
}

:root {
  --primary: #1a365d;
  --secondary: #2a4a7f;
  --accent: #d69e2e;
  --brand: #6C3EF5;
  --brand2: #4F2EDB;
  --aqua: #2ec4b6;
  --sun: #ffbe0b;
  --bg: #f6f8ff;
  --bg2: #eef2ff;
  --ink: #17143D;
  --text: #17143D;
  --muted: #7A748F;
  --muted2: #A7A3B8;
  --card: rgba(255,255,255,.92);
  --stroke: rgba(12,18,40,.12);
  --stroke2: rgba(12,18,40,.08);
  --shadow: 0 18px 55px rgba(23,20,61,.10);
  --shadow2: 0 10px 28px rgba(23,20,61,.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Vazirmatn, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFF 48%, #F1ECFF 100%);
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: -120px;
  background: radial-gradient(circle at 18% 8%, rgba(139,92,246,.18), transparent 30%),
              radial-gradient(circle at 88% 24%, rgba(108,62,245,.14), transparent 34%),
              radial-gradient(circle at 50% 100%, rgba(79,46,219,.10), transparent 38%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.hero-layout {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 40px 20px;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(23,20,61,.08);
  border: 1px solid #E6E0F8;
  border-radius: 24px;
  margin: 18px 14px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-img {
  flex: 1;
  max-width: 450px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.hero-title {
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.9px;
  font-weight: 990;
  color: var(--ink);
  margin: 0;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  font-weight: 990;
  color: var(--brand);
  margin: 10px 0 0;
}

.hero-desc {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  font-weight: 760;
}

.action-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.action-card {
  background: rgba(108,62,245,.06);
  border: 1px solid rgba(108,62,245,.14);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(23,20,61,.04);
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(108,62,245,.12);
}

.action-card svg {
  width: 36px;
  height: 36px;
  color: var(--brand);
}

.action-card .label {
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
}

.action-card .hint {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-top: -2px;
}

.services-section {
  padding: 30px 14px 50px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.services-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 990;
  margin: 0 0 24px;
  letter-spacing: -0.6px;
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.service-card {
  background: rgba(108,62,245,.06);
  border: 1px solid rgba(108,62,245,.14);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 22px rgba(23,20,61,.04);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(108,62,245,.12);
}

.service-card svg {
  width: 32px;
  height: 32px;
  color: var(--brand);
}

.service-card .s-title {
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
}

.service-card .s-desc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.faq-section {
  padding: 52px 14px 44px;
  position: relative;
  z-index: 1;
}

.faq-title {
  font-size: 24px;
  font-weight: 990;
  margin: 0 0 24px;
  letter-spacing: -0.6px;
  color: var(--ink);
  text-align: center;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

details {
  border-radius: 12px;
  border: 1px solid #E6E0F8;
  background: var(--card);
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(23,20,61,.07);
  backdrop-filter: blur(10px);
}

summary {
  cursor: pointer;
  font-weight: 990;
  list-style: none;
  color: var(--ink);
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.95;
  font-weight: 780;
  font-size: 13px;
}

.siteTop {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(23,20,61,.08);
  border-bottom: 1px solid #E6E0F8;
}

.headerBar {
  background: linear-gradient(135deg, #8B5CF6, #4F2EDB);
  padding: 14px 0;
}

.headerBar .topline {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.headerBar .wrap {
  padding: 0 12px;
}

.brandBox {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139,92,246,.98), rgba(108,62,245,.62));
  box-shadow: 0 14px 30px rgba(108,62,245,.18);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  flex: 0 0 auto;
}

.logo svg {
  width: 26px;
  height: 26px;
}

.brandText {
  line-height: 1.12;
  min-width: 0;
}

.brandText .t1 {
  font-weight: 950;
  font-size: 15px;
  letter-spacing: -0.2px;
  color: #fff;
}

.brandText .t2 {
  color: rgba(255,255,255,.85);
  font-weight: 900;
  font-size: 13px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(560px, 78vw);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  backdrop-filter: blur(6px);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all .2s;
}

.mainNav {
  background: var(--card);
  border-top: 1px solid rgba(12,18,40,.05);
  overflow: visible;
  backdrop-filter: blur(14px);
}

.mainNav .wrap {
  padding: 0 20px;
}

.mainNav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: transform .35s ease, opacity .35s ease, max-height .35s ease;
}

.navList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.navItem {
  position: relative;
}

.navItem > a {
  display: block;
  padding: 14px 4px;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  position: relative;
  text-decoration: none;
  transition: color .2s;
}

.navItem > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 8px);
  height: 2.5px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.25, .8, .25, 1.2);
}

.navItem > a:hover {
  color: var(--brand);
}

.navItem > a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.hasSubmenu > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hasSubmenu > a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
  transition: transform .25s;
  order: 1;
  margin-right: auto;
  margin-left: 4px;
}

.submenu {
  list-style: none;
  padding: 0 0 0 18px;
  margin: 0;
  display: none;
  background: #f8fafd;
  border-radius: 0;
}

.submenu li a {
  display: block;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  border-bottom: 1px solid rgba(12,18,40,.06);
  transition: background .2s, color .2s;
}

.submenu li:last-child a {
  border-bottom: none;
}

.submenu li a:hover {
  background: rgba(108,62,245,.06);
  color: var(--brand);
}

.navItem.submenu-open .submenu {
  display: block;
}

.gallery-container {
  margin: 18px 14px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  border-radius: 16px;
}

.slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 16px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.44) 60%, transparent);
  color: #fff;
  padding: 18px 14px 12px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
  pointer-events: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(23,20,61,.70);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 9996;
  padding: calc(18px + env(safe-area-inset-top)) 18px calc(18px + env(safe-area-inset-bottom));
  overflow: auto;
  backdrop-filter: blur(10px);
}

.modal.show {
  display: flex;
}

.modalBox {
  background: var(--card);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 22px 18px;
  box-shadow: 0 24px 70px rgba(23,20,61,.28);
  border: 1px solid #E6E0F8;
  transform: translateY(10px);
  opacity: 0;
  transition: all .25s ease;
  max-height: calc(100vh - 36px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.show .modalBox {
  transform: translateY(0);
  opacity: 1;
}

.modalTitle {
  font-size: 18px;
  font-weight: 990;
  color: var(--ink);
  margin: 0 0 14px;
  text-align: center;
}

.inputGroup {
  margin-bottom: 14px;
}

.inputGroup label {
  font-weight: 900;
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

.inputGroup input,
.inputGroup select,
.inputGroup textarea {
  width: 100%;
  padding: 13px 14px;
  background: #FFFFFF;
  border: 1px solid #E6E0F8;
  border-radius: 16px;
  font-size: 14px;
  transition: border .2s, box-shadow .2s;
  outline: none;
  color: var(--ink);
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(23,20,61,.04);
}

.inputGroup textarea {
  min-height: 110px;
  resize: vertical;
}

.inputGroup input:focus,
.inputGroup select:focus,
.inputGroup textarea:focus {
  border-color: #6C3EF5;
  box-shadow: 0 0 0 4px rgba(108,62,245,.13);
}

.btnX {
  background: linear-gradient(135deg, #8B5CF6 0%, #6C3EF5 52%, #4F2EDB 100%);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 18px;
  font-weight: 990;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  box-shadow: 0 16px 32px rgba(108,62,245,.30);
}

.btnX:hover {
  background: linear-gradient(135deg, #7a4de0 0%, #5b2edb 52%, #3e1eb0 100%);
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(108,62,245,.38);
}

.btnCancel {
  background: #F7F5FF;
  color: #4F2EDB;
  border: 1px solid #D8CCF7;
  margin-top: 8px;
  box-shadow: 0 8px 22px rgba(23,20,61,.04);
}

.loadingOverlay {
  position: fixed;
  inset: 0;
  background: rgba(23,20,61,.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  flex-direction: column;
  color: #fff;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.loadingOverlay.show {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255,255,255,.14);
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 18px;
}

.slider-wrapper {
  direction: ltr;
}

.slider {
  direction: ltr;
}

.slide-caption {
  direction: rtl;
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.resultModal {
  position: fixed;
  inset: 0;
  background: rgba(23,20,61,.70);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  padding: calc(18px + env(safe-area-inset-top)) 18px calc(18px + env(safe-area-inset-bottom));
  overflow: auto;
  backdrop-filter: blur(10px);
}

.resultModal.show {
  display: flex;
}

.resultBox {
  background: var(--card);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(23,20,61,.28);
  border: 1px solid #E6E0F8;
  transform: scale(.94);
  opacity: 0;
  transition: all .25s ease;
  max-height: calc(100vh - 36px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.resultModal.show .resultBox {
  transform: scale(1);
  opacity: 1;
}

.resultIcon {
  font-size: 58px;
  margin-bottom: 16px;
}

.resultTitle {
  font-size: 18px;
  font-weight: 990;
  color: var(--ink);
  margin-bottom: 10px;
}

.resultText {
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,20,61,.6);
  z-index: 11000;
  display: none;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-side-menu {
  position: fixed;
  top: 0;
  left: auto;
  right: -100%;
  width: 50%;
  min-width: 250px;
  max-width: 320px;
  height: 100%;
  background: var(--card);
  backdrop-filter: blur(20px);
  box-shadow: -4px 0 32px rgba(23,20,61,.2);
  z-index: 11001;
  transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  flex-direction: column;
  padding: 20px 0 30px;
  border-left: 1px solid rgba(108,62,245,.3);
}

.mobile-side-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 16px;
}

.mobile-menu-header .close-menu {
  background: rgba(108,62,245,.12);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
}

.mobile-side-menu .navList {
  flex-direction: column;
  gap: 0;
}

.mobile-side-menu .navItem > a {
  padding: 14px 20px;
  font-size: 16px;
}

.mobile-side-menu .submenu {
  padding: 0 0 0 20px;
  background: transparent;
}

.mobile-side-menu .hasSubmenu > a::before {
  margin-right: auto;
  margin-left: 0;
}

.mobile-side-menu .hasSubmenu.submenu-open .submenu {
  display: block;
}

@media(max-width:719px) {
  .logo {
    display: none;
  }

  .brandBox {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-right: 48px;
    box-sizing: border-box;
  }

  .brandText {
    text-align: center;
  }

  .hero-layout {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    margin: 10px;
    align-items: center;
  }

  .hero-img {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-img img {
    width: 100%;
    height: auto;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-title,
  .hero-subtitle,
  .hero-desc {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    text-overflow: clip;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.35;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.95;
  }

  .gallery-container {
    margin: 10px;
  }

  .mainNav {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:720px) {
  .headerBar .wrap {
    padding: 0 80px 0 12px;
  }

  .brandBox {
    margin-right: 40px;
  }

  .hamburger {
    display: none;
  }

  .mainNav {
    display: block;
  }

  .navList {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
  }

  .navItem > a {
    padding: 16px 14px;
    font-size: 14px;
  }

  .hasSubmenu > a::before {
    margin-right: auto;
    margin-left: 4px;
  }

  .submenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 600px;
    background: var(--card);
    box-shadow: 0 14px 30px rgba(23,20,61,.12);
    border: 1px solid #E6E0F8;
    padding: 12px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    z-index: 200;
    display: none;
    border-radius: 16px;
    backdrop-filter: blur(14px);
  }

  .hasSubmenu:hover .submenu {
    display: grid;
  }

  .submenu li a {
    padding: 10px 12px;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    text-align: center;
  }

  .submenu li a:hover {
    background: rgba(108,62,245,.08);
    color: var(--brand);
  }

  .hero-layout {
    padding: 60px 40px;
    flex-direction: row;
    margin: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .slide {
    flex: 0 0 calc(50% - 6px);
  }

  .slider {
    gap: 12px;
  }

  .services-section {
    padding: 30px 20px 50px;
  }

  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-container {
    margin: 20px;
  }

  .mainNav .wrap {
    padding-right: 120px;
  }

  .mobile-side-menu,
  .mobile-menu-overlay {
    display: none;
  }
}
footer {
  background: var(--card);
  border-top: 1px solid #E6E0F8;
  padding: 24px 14px;
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
footer div {
  margin-top: 6px;
}
footer .copyright {
  margin-top: 12px;
  color: var(--muted2);
}
.site-footer {
  background: #F1ECFF;
  border-top: 1px solid #E6E0F8;
  padding: 40px 14px 24px;
  margin-top: 50px;
  text-align: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.logo-box {
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  border: 1px solid #E6E0F8;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(23,20,61,.05);
  padding: 12px;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--ink);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  text-align: right;
  direction: rtl;
  justify-content: flex-start;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(108,62,245,.07);
  border: 1px solid rgba(108,62,245,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: transform .2s, background .2s;
}

.social-icon:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted2);
  border-top: 1px solid #E6E0F8;
  padding-top: 16px;
  direction: rtl;
}

@media(min-width:720px) {
  .footer-contact {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: auto;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .logo-box {
    width: 110px;
    height: 110px;
  }
}

.mobile-side-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}