/*
========================================
RESET & NORMALIZE
========================================
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #FAFAFA;
  color: #38414a;
  min-height: 100vh;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2076B6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A5E8F;
  text-decoration: underline;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}
::selection {
  background: #A8D3EA;
}

/*
========================================
BRAND COLORS & DESIGN TOKENS
========================================
*/
:root {
  --brand-primary: #2076B6;
  --brand-primary-dark: #1A5E8F;
  --brand-secondary: #A8D3EA;
  --brand-accent: #F2F5F7;
  --brand-white: #FFFFFF;
  --brand-grey: #e0e5ea;
  --brand-bg: #FAFAFA;
  --brand-border: #D2DBE3;
  --brand-text: #38414a;
  --brand-text-dark: #24303F;
  --brand-shadow: 0 2px 16px 0 rgba(32,118,182,0.07),0 1.5px 4px 0 rgba(56,65,74,0.11);
  --font-display: 'Georgia', 'Times New Roman', Times, serif;
  --font-body: 'Georgia', 'Times New Roman', Times, serif;
  --transition-fast: 0.15s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.3s cubic-bezier(.25,0,.35,1);
}

/*
========================================
TYPOGRAPHY
========================================
*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-text-dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.18;
  margin-bottom: 22px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.37rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p, ul, ol, dl, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-text);
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  background: var(--brand-accent);
  border-left: 4px solid var(--brand-primary);
  padding: 16px 26px;
  margin-bottom: 12px;
  color: var(--brand-text-dark);
}
cite {
  display: block;
  margin-top: 4px;
  font-size: 0.99em;
  font-style: normal;
  color: var(--brand-primary);
  font-family: var(--font-display);
}
hr {
  border: none;
  border-top: 1px solid var(--brand-border);
}
dt {
  font-weight: bold;
  margin-top: 14px;
}
dd {
  margin-left: 0;
  margin-bottom: 8px;
}

/* content wrapper */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/*
========================================
CONTAINERS & LAYOUTS
========================================
*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: var(--brand-shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
  border: 1px solid var(--brand-border);
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(32,118,182,0.17),0 2px 6px 0 rgba(56,65,74,0.13);
  transform: translateY(-2px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 24px;
  background: var(--brand-accent);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(32,118,182,0.10);
  border: 1px solid var(--brand-border);
  min-width: 260px;
  max-width: 440px;
  transition: box-shadow var(--transition-fast);
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(32,118,182,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 410px;
  margin-bottom: 20px;
}

/* Icon list container (for icon+usp lists in features on service pages) */
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}
.icon-list img {
  background: var(--brand-accent);
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 2px 8px 0 rgba(32,118,182,0.04);
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 1px solid var(--brand-border);
}
.usp-list {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-text);
}
.usp-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.usp-list li:before {
  content: '\2014\00a0';
  color: var(--brand-primary);
  font-weight: bold;
  position: absolute; left: 0; top: 0;
}

/* spacing for service-features */
.service-features {
  margin-bottom: 18px;
}
.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.service-features li:before {
  content: '\2022';
  position: absolute; left: 0; color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.1em;
  top: 0;
}

/*
========================================
HEADER / NAVIGATION
========================================
*/
header {
  width: 100%;
  background: var(--brand-white);
  box-shadow: 0 2px 16px 0 rgba(32,118,182,0.08);
  position: sticky;
  top: 0; left: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 26px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-body);
  color: var(--brand-primary-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
header nav a:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
header img {
  height: 45px;
  width: auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 10px 26px;
  background: var(--brand-secondary);
  color: var(--brand-primary-dark);
  box-shadow: 0 1px 6px 0 rgba(32,118,182,0.09);
  border: 1px solid var(--brand-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--brand-white);
  border: 1px solid var(--brand-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-primary-dark);
  color: var(--brand-white);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 3px 20px 0 rgba(32,118,182,0.11);
}
.btn:active {
  opacity: 0.86;
}

/*
========================================
MOBILE BURGER NAVIGATION
========================================
*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  font-size: 2rem;
  font-family: var(--font-body);
  color: var(--brand-primary-dark);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1003;
  transition: background var(--transition-slow);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-accent);
}

/* hidden on desktop, shown on mobile */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  min-height: 100vh;
  background: var(--brand-white);
  z-index: 1100;
  transform: translateX(100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform var(--transition-slow);
  box-shadow: 0 8px 42px 0 rgba(32,118,182,0.13);
  padding: 0 0 24px 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--brand-primary-dark);
  background: none;
  border: none;
  padding: 18px 22px 8px 8px;
  margin: 6px 0 0 12px;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition-fast);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 32px;
  width: 100vw;
}
.mobile-nav a {
  color: var(--brand-primary-dark);
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid var(--brand-border);
  display: block;
  width: 100%;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/*
========================================
HERO & CTA SECTIONS
========================================
*/
.hero {
  background: linear-gradient(120deg, var(--brand-accent) 0%, var(--brand-bg) 100%);
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 60px;
  padding: 50px 0 38px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.cta {
  background: var(--brand-primary);
  border-radius: 20px;
  margin-bottom: 48px;
  padding: 46px 20px 46px 20px;
  box-shadow: 0 3px 22px 0 rgba(32,118,182,0.10);
}
.cta h2, .cta p {
  color: var(--brand-white);
}
.cta a.btn-primary {
  margin-top: 18px;
  background: var(--brand-white);
  color: var(--brand-primary-dark);
  border: 1px solid var(--brand-white);
}
.cta a.btn-primary:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary-dark);
}

/*
========================================
FEATURES & CARDS
========================================
*/
.features, .about, .services, .about-story, .promises, .team-profile, .contact-details, .thank-you, .legal, .next-steps {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .features .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.feature {
  background: var(--brand-white);
  border-radius: 14px;
  box-shadow: var(--brand-shadow);
  padding: 32px 20px 26px 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 290px;
  text-align: center;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  border: 1px solid var(--brand-border);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.feature h3 {
  color: var(--brand-primary-dark);
  margin-bottom: 10px;
}
.feature p.price {
  color: var(--brand-primary);
  font-size: 1.12em;
  font-family: var(--font-display);
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: bold;
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(32,118,182,0.13);
  transform: translateY(-2px) scale(1.022);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* about/team/timeline/values specific */
.timeline h3 {
  font-size: 1.14em;
  margin-bottom: 6px;
}
.timeline ul {
  margin-bottom: 0;
}
.timeline li {
  font-size: 1em;
  margin-bottom: 8px;
  padding-left: 0;
}
.mission-statement {
  margin-top: 16px;
  background: var(--brand-accent);
  border-left: 4px solid var(--brand-primary);
  padding: 16px 24px;
  border-radius: 10px;
  color: var(--brand-text-dark);
  font-family: var(--font-body);
}
.team-brief {
  background: var(--brand-accent);
  border-left: 4px solid var(--brand-primary);
  border-radius: 10px;
  padding: 14px 24px;
  color: var(--brand-text);
  margin-bottom: 18px;
  font-size: 1rem;
}
.values {
  margin-top: 14px;
}
.values li {
  padding-left: 18px;
  margin-bottom: 7px;
}
.values li:before {
  content: '\25AB'; /* small diamond */
  color: var(--brand-primary);
  font-size: 0.9em;
  display: inline-block;
  margin-right: 6px;
  position: absolute; left: 0;
}

/*
========================================
TESTIMONIAL CARDS
========================================
*/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.testimonial-card blockquote {
  color: var(--brand-text-dark);
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1.08rem;
  line-height: 1.5;
}
.testimonial-card cite {
  font-style: normal;
  color: var(--brand-primary-dark);
  font-weight: bold;
}

/* ensure dark text/contrast for testimonial cards */
.testimonial-card, .testimonial-card * {
  color: var(--brand-text-dark);
}

/*
========================================
LEGAL/POLICY PAGES
========================================
*/
.legal .content-wrapper,
.legal .text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  color: var(--brand-text);
}

/*
========================================
CONTACT PAGE
========================================
*/
.contact-details .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-details .text-section {
  min-width: 200px;
  max-width: 480px;
}
.contact-details dl {
  margin-bottom: 12px;
}
.contact-details dt {
  font-weight: bold;
  margin-top: 12px;
}
.contact-details dd {
  margin-bottom: 8px;
  margin-left: 0;
  color: var(--brand-text-dark);
}

/*
========================================
FOOTER
========================================
*/
footer {
  background: var(--brand-accent);
  border-top: 1px solid var(--brand-border);
  padding: 0;
  font-size: 0.98rem;
  color: var(--brand-text);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 20px;
}
footer nav {
  display: flex;
  gap: 16px;
}
footer nav a {
  color: var(--brand-primary-dark);
  padding: 2px 11px;
  font-weight: 500;
  font-size: 0.96rem;
  transition: color 0.2s;
}
footer nav a:hover {
  color: var(--brand-primary);
}
footer img {
  height: 34px;
  width: auto;
}
footer p {
  font-size: 0.93rem;
  color: var(--brand-text);
}

/*
========================================
COOKIE BANNER & MODAL
========================================
*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand-white);
  border-top: 1px solid var(--brand-border);
  box-shadow: 0 -2px 18px 0 rgba(56,65,74,0.07);
  padding: 24px 20px 16px 20px;
  z-index: 1920;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  animation: cookiefadein 0.7s;
}
@keyframes cookiefadein {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  max-width: 540px;
  color: var(--brand-text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 23px;
  border-radius: 7px;
  border: 1px solid var(--brand-primary);
  cursor: pointer;
  background: var(--brand-primary);
  color: var(--brand-white);
  font-weight: bold;
  margin-right: 0;
  transition: background var(--transition-fast), color var(--transition-fast), border var(--transition-fast);
}
.cookie-btn.secondary {
  background: var(--brand-white);
  color: var(--brand-primary-dark);
  border: 1px solid var(--brand-border);
}
.cookie-btn.accent {
  background: var(--brand-secondary);
  color: var(--brand-primary-dark);
  border: 1px solid var(--brand-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-primary-dark);
  color: var(--brand-white);
  border: 1px solid var(--brand-primary-dark);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary-dark);
}
.cookie-btn.accent:hover, .cookie-btn.accent:focus {
  background: var(--brand-primary);
  color: var(--brand-white);
  border: 1px solid var(--brand-primary-dark);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(56,65,74,0.26);
  z-index: 1922;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.3s;
}
.cookie-modal__content {
  background: var(--brand-white);
  border-radius: 14px;
  box-shadow: 0 4px 36px 0 rgba(32,118,182,0.15);
  padding: 38px 26px;
  min-width: 320px;
  max-width: 400px;
  font-family: var(--font-body);
}
.cookie-modal__content h3 {
  font-size: 1.33rem;
  margin-bottom: 14px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-modal__category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal__category input[type='checkbox'] {
  width: 24px;
  height: 24px;
  accent-color: var(--brand-primary);
}
.cookie-modal__buttons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
}
.cookie-modal__close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 2rem;
  color: var(--brand-primary-dark);
  background: none;
  border: none;
  cursor: pointer;
}

/*
========================================
RESPONSIVE
========================================
*/
@media (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
  .feature-grid {
    gap: 23px;
  }
}
@media (max-width: 991px) {
  .container { max-width: 97vw;}
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer .container {
    align-items: flex-start;
    gap: 13px;
  }
  .icon-list {
    gap: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .feature-grid, .features .content-wrapper {
    gap: 17px;
  }
  .feature { max-width: 100%; }
  .container{ padding-left: 9px; padding-right: 9px;}
}
@media (max-width: 768px) {
  .section,
  .hero,
  .about,
  .cta,
  .services,
  .features,
  .testimonials,
  .about-story,
  .promises,
  .team-profile,
  .thank-you,
  .legal,
  .next-steps,
  .contact-details {
    padding: 28px 6px;
    margin-bottom: 34px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.52rem; }
  .feature-grid,
  .features .content-wrapper,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .icon-list {
    gap: 10px;
    margin-bottom: 11px;
  }
  .feature {
    padding: 20px 10px;
  }
  .team-brief, .mission-statement {
    padding: 7px 11px;
  }
  .about-story .content-wrapper, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .contact-details .content-wrapper {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 11px;
  }
  h2 {
    font-size: 1.13rem;
    margin-bottom: 10px;
  }
  .cta {
    border-radius: 13px;
    padding: 20px 6px 22px 6px;
  }
  .card, .testimonial-card {
    padding: 14px 8px;
    border-radius: 8px;
  }
  .testimonial-card {
    max-width: 98%;
    padding: 15px 8px 15px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 13px 5px 9px 5px;
    font-size: 0.92rem;
  }
  .cookie-banner__actions {
    gap: 9px;
  }
  .cookie-modal__content {
    padding: 19px 6px;
    min-width: 80vw;
    max-width: 98vw;
  }
}
/*
========================================
MOBILE MENU BREAKPOINTS
========================================
*/
@media (max-width: 900px) {
  header nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}

/*
========================================
MISC
========================================
*/
.text-section {
  max-width: 690px;
  width: 100%;
}
.next-steps {
  background: var(--brand-accent);
  border-radius: 10px;
  padding: 23px 18px;
  margin-top: 28px;
}

/*
========================================
UTILITIES
========================================
*/
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/*
========================================
TRANSITIONS & INTERACTIONS
========================================
*/
.btn, .card, .feature, .testimonial-card, .cookie-btn {
  transition: box-shadow var(--transition-fast), background var(--transition-fast), border var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
}

/* Focus styling */
a:focus, button:focus, .btn:focus, .cookie-btn:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Prevent absolute positioning for content cards. Only icons/decoration allowed. */

/* Hide scrollbars from mobile menu if necessary */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/*
========================================
END
========================================
*/
