/* ===============================
   CSS 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  background: #161C22;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F3F4F8;
  background: #161C22;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: #89A8C4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F3F4F8;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
strong, b {
  font-weight: 600;
}
code, pre {
  font-family: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* ===============================
   FONT IMPORTS (Web Safe/Google Fonts)
   =============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ===============================
   BRAND COLORS & METALLIC VARIABLE
   =============================== */
:root {
  --primary: #1C3556;
  --secondary: #89A8C4;
  --accent: #F3F4F8;
  --background: #161C22;
  --metal: #8A99A7; /* industrial metallic */
  --metal-gradient: linear-gradient(90deg, #515a67 0%, #a6b2bc 90%);
  --danger: #E74C3C;
  --success: #21A179;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F3F4F8;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.025em;
  color: var(--accent);
  text-shadow: 0 2px 14px rgba(28,53,86,0.11);
}
h2 {
  font-size: 2rem;
  color: var(--secondary);
  letter-spacing: 0.015em;
}
h3 {
  font-size: 1.5rem;
  color: #e8eaee;
}
h4 {
  font-size: 1.2rem;
  color: #c2c8ce;
}
h5, h6 {
  font-size: 1rem;
  color: #bfc8d1;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #dadee5;
}
.subtitle {
  font-size: 1.25rem;
  color: #a3afbb;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

/* Visual hierarchy for feature, card, CTA */
.section h2 {
  margin-bottom: 32px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #1C3556;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(25,40,55,0.18);
  overflow: hidden;
  border: 1px solid #272e37;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 3px 24px 2px rgba(91,130,157,0.17);
  border-color: var(--secondary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  gap: 10px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section .card, .section .testimonial-card {
  margin-bottom:20px;
}

/* --- HERO --- */
.hero {
  background: linear-gradient(120deg, #1C3556 60%, #161C22 100%);
  border-bottom: 4px solid #8A99A7;
  margin-bottom: 60px;
  padding: 56px 0 68px 0;
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: var(--accent);
  margin-bottom: 14px;
  text-align: center;
  font-size: 2.4rem;
}
.hero .subtitle {
  margin-bottom: 32px;
  text-align: center;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.feature-grid > div {
  background: #212b37;
  border: 1px solid #323d4a;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(28,53,86,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  transition: background 0.18s, border-color 0.18s;
}
.feature-grid > div:hover {
  background: #27313d;
  border-color: var(--secondary);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: grayscale(30%) brightness(1.1);
}
.feature-grid h3 {
  margin-bottom: 8px;
}

/* --- TEAM SNIPPET / OVERVIEW / VISION --- */
.team-snippet, .team-overview, .commitment-statement, .team-vision {
  background: #212b37;
  border-radius: 8px;
  border-left: 4px solid var(--metal);
  padding: 18px 22px;
  margin: 24px 0 0 0;
  color: #b9c8d4;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* --- HISTORY TIMELINE --- */
.history-timeline {
  margin: 28px 0 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--secondary);
  background: #232a31;
  border-radius: 0 10px 10px 0;
  color: #b3d3ee;
  font-size: 1.04rem;
}

/* --- CARDS (e.g. Service List, Lawyer Profiles) --- */
.service-list, .lawyer-profiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-list > div, .lawyer-profiles-grid > div {
  background: #1C3556;
  flex: 1 1 250px;
  max-width: 320px;
  border-radius: 10px;
  border: 1.5px solid #33435a;
  box-shadow: 0 3px 12px 0px rgba(63,85,111,0.09);
  padding: 22px 20px;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}
.service-list > div:hover, .lawyer-profiles-grid > div:hover {
  border-color: var(--metal);
  background: #212b37;
}
.service-list img, .lawyer-profiles-grid img {
  width: 38px;
  height: 38px;
}
.service-list h2, .lawyer-profiles-grid h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.certifications-list {
  margin: 24px 0;
  font-size: 1.07rem;
  color: #dadfe5;
}
.certifications-list ul {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}
.certifications-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.certifications-list li:before {
  content: '\2022';
  color: var(--secondary);
  position: absolute;
  left: 0;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 16px 0 0 0;
}
.faq-list > div {
  background: #232A31;
  border-radius: 9px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 2px 10px rgba(32,41,67,0.07);
  padding: 20px 22px;
  color: #d7e1ec;
}
.faq-list strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.07rem;
}

.contact-snippet, .google-map-embed {
  background: #232a31;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  padding: 18px 22px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.google-map-embed img {
  margin-bottom: 12px;
}

/* ===============================
   CTA BUTTONS
   =============================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--accent);
  border-radius: 32px;
  padding: 13px 34px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  border: 2px solid transparent;
  box-shadow: 0 3px 15px 2px rgba(28,53,86,0.13);
  margin: 10px 0;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.11s;
  cursor: pointer;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--metal);
  color: #212b37;
  border-color: var(--secondary);
  box-shadow: 0 7px 28px 0px rgba(137,168,196,0.16);
  transform: translateY(-2px) scale(1.035);
  outline: 0;
}

/* ===============================
   TESTIMONIAL CARDS
   =============================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  background: #F3F4F8;
  color: #1C3556;
  border-radius: 13px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 18px -2px rgba(80,105,133,0.09);
  position: relative;
  border-left: 5px solid var(--metal);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: box-shadow 0.18s, border-left 0.19s;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 1rem;
  color: #6a798c;
}
.testimonial-card p {
  margin-bottom: 2px;
  font-size: 1.07rem;
  color: #283952;
}
.testimonial-card:hover {
  box-shadow: 0 3px 36px -2px rgba(80,105,133,0.13);
  border-left: 5px solid var(--secondary);
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  width: 100%;
  background: #1C3556;
  border-bottom: 1.5px solid #515a67;
  padding: 0;
  z-index: 12;
  box-shadow: 0 2px 8px rgba(28,53,86,0.10);
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  max-width: 160px;
  height: auto;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 10px 7px 10px;
  color: #B0C2D9;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
  position: relative;
}
nav a:hover, nav a.active {
  background: #27313d;
  color: var(--accent);
}
header .cta-btn {
  margin: 0 0 0 22px;
  font-size: 1.07rem;
  padding: 11px 26px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 250;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(28,53,86,0.08);
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #212b37;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: #212b37;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.35,0,.45,1.0);
  box-shadow: 8px 0 26px rgba(28,40,53,0.25);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--metal);
  font-size: 2.1rem;
  margin: 28px 0 20px 18px;
  align-self: flex-start;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.19s;
  z-index: 1000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  background: #13161a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding: 12px 28px;
}
.mobile-nav a {
  padding: 18px 0 18px 6px;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--accent);
  border-radius: 5px;
  transition: background 0.17s, color 0.17s;
  margin-bottom: 4px;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #1C3556;
  color: var(--metal);
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #1C3556;
  width: 100%;
  margin-top: 60px;
  border-top: 2px solid #515a67;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 28px;
}
footer nav {
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #a2b3c9;
  font-size: 1rem;
  margin-bottom: 2px;
}
footer nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  color: #dee2ec;
  font-size: 0.99rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer img {
  max-width: 54px;
}

/* ===============================
   MISCELLANEOUS & UTILITY CLASSES
   =============================== */
ul, ol {
  padding-left: 25px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
  color: #d3dbe8;
}
ul li strong, ol li strong {
  color: #a3bada;
}
input, textarea, select {
  background: #181C23;
  border: 1.5px solid #404f61;
  color: #F3F4F8;
  border-radius: 8px;
  padding: 11px 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  transition: border-color 0.15s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--secondary);
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232b37;
  color: #e6ebf2;
  z-index: 2400;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  box-shadow: 0 -3px 18px rgba(28,53,86,0.12);
  border-top: 2px solid var(--metal);
  gap: 24px;
  transition: transform 0.38s cubic-bezier(.45,0,.45,1), opacity 0.32s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 320px;
  font-size: 1.06rem;
  color: #e6ebf2;
}
.cookie-banner .cookie-btn {
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 23px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-left: 9px;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(28,60,100,0.09);
}
.cookie-banner .cookie-btn.cookie-reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--metal);
  color: #212b37;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--secondary);
  color: #232b37;
  outline: 0;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28, 37, 58, 0.93);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.35s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #F3F4F8;
  color: #212b37;
  padding: 32px 28px 28px 28px;
  border-radius: 13px;
  min-width: 300px;
  max-width: 92vw;
  box-shadow: 0 7px 36px -7px rgba(19,34,56,0.18);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 4200;
  animation: fadeInUp 0.5s cubic-bezier(.45,0,.45,1);
}
@keyframes fadeInUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal-header h3 {
  font-size: 1.21rem;
  color: #1C3556;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #48506a;
  font-size: 2.1rem;
  cursor: pointer;
  align-self: flex-end;
  margin-left: 12px;
  border-radius: 50%;
  transition: color 0.11s, background 0.13s;
}
.cookie-modal-close:hover {
  color: #E74C3C;
  background: #e2e5eb;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #e7ebf5;
  padding: 13px 12px;
  border-radius: 8px;
  color: #182a3d;
  font-size: 1.05rem;
  border-left: 5px solid #A6B2BC;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 21px; height: 21px;
  margin: 0 7px 0 0;
  border-radius: 6px;
  border: 2px solid #A6B2BC;
  background: #f4f5fa;
  position: relative;
  outline: none;
  transition: border-color 0.13s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #1C3556;
  border-color: #1C3556;
}
.cookie-category input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  position: absolute;
  left: 4px; top: 4px;
  width: 9px; height: 9px;
  background: #F3F4F8;
  border-radius: 2px;
}
.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.6;
  border: 2px dashed #B0C2D9;
  background: #cbd5e1;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  background: var(--primary);
  color: var(--accent);
  border-radius: 22px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.12s,box-shadow 0.13s,color 0.12s;
}
.cookie-modal .cookie-btn.cookie-reject {
  background: var(--danger);
  color: #fff;
}
.cookie-modal .cookie-btn.cookie-settings {
  background: var(--metal);
  color: #212b37;
}
.cookie-modal .cookie-btn:hover,
.cookie-modal .cookie-btn:focus {
  background: var(--secondary);
  color: #232b37;
}

/* ===============================
   RESPONSIVE LAYOUT
   =============================== */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
  .feature-grid, .service-list, .lawyer-profiles-grid, .card-container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .lawyer-profiles-grid, .card-container {
    gap: 12px;
  }
  .feature-grid > div, .service-list > div, .lawyer-profiles-grid > div {
    flex: 1 1 210px;
    min-width: 160px;
    max-width: 100%;
    padding: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }

  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .feature-grid, .service-list, .lawyer-profiles-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-list > div, .lawyer-profiles-grid > div {
    max-width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
  .faq-list {
    gap: 15px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-banner .cookie-banner-text {
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero { padding: 35px 0 45px 0; }
  .cta-btn { padding: 11px 16px; font-size: 1.06rem; }
  .testimonial-card { font-size: 1rem; }
  .content-wrapper, .container { padding-left:7px; padding-right:7px;}
  .cookie-modal-content { padding: 20px 7px 18px 7px; font-size: 0.97rem; }
}

/* ===============================
   SHOW/HIDE STATES (for js)
   =============================== */
.mobile-menu {
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
}

/* ===============================
   INTERACTIONS & ANIMATIONS
   =============================== */
.card, .feature-grid > div, .service-list > div, .lawyer-profiles-grid > div, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.23s, border-color 0.19s, background 0.16s;
}
.cta-btn, .cookie-btn {
  transition: background 0.14s, box-shadow 0.18s, color 0.13s, transform 0.11s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* ===============================
   UTILITY: HIDE FOR DESKTOP/MOBILE
   =============================== */
.hide-mobile { display: none !important; }
@media (max-width: 768px) {
  .hide-mobile { display: initial !important; }
  .hide-desktop { display: none !important; }
}

/* ===============================
   END OF STYLE.CSS
   =============================== */
