/* ============================================================
   GENUINE MIGRATION — SHARED STYLESHEET
   Brand: Navy #1B2F6E | Red #CC1C2E | Gold #C9923B
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

:root {
  --navy:      #1B2F6E;
  --navy-dark: #0F1E4A;
  --navy-mid:  #243E8A;
  --red:       #CC1C2E;
  --red-dark:  #A81525;
  --gold:      #C9923B;
  --gold-light:#E8B96A;
  --white:     #FFFFFF;
  --off-white: #F7F8FC;
  --grey-light:#EEF0F6;
  --grey-mid:  #CDD2E0;
  --grey-text: #5A6480;
  --text:      #1A1F36;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w:     1200px;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(27,47,110,0.10);
  --shadow-lg: 0 8px 48px rgba(27,47,110,0.16);
  --transition: all 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
.post_img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.blog_sec img{border-radius: 12px;}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-bottom.flag_sec, .footer-bottom.flag_sec > div{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}
.footer-bottom.flag_sec > div {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
}
.footer-bottom.flag_sec > div span{
    color: #0f1e4a;
    font-size: 18px;
    font-weight: 600;
}
.footer-bottom.flag_sec > div img {
    border-radius: 10px;
    max-width: 152px;
}
header .has-dropdown > a:after {
    content: "";
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    height: 7px;
    width: 10px;
    border-radius: 4px;
    position: absolute;
    right: 5px;
    background: #142559;
    top: 44%;
}
.social_icons a {
    display: inline-block;
    max-width: 24px;
    max-height: 24px;
    margin: 0 7px;
    padding: 5px;
    background: #cc1c2e;
    border-radius: 30px;
}
.social_icons{
    display: flex;
}

.agent-avatar.jk{background-image: url(../images/Jeevan.jpg);;}
.agent-avatar.zoy{background-image: url(../images/Owen-yang.jpg);}
.topbar a { color: rgba(255,255,255,0.82); }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-mara {
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(27,47,110,0.09);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
header a.logo {
    max-width: 130px;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 11px;
  color: var(--grey-text);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { list-style: none; position: relative; }
.main-nav > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}
.main-nav > li.has-dropdown > a {
    padding: 8px 20px 8px 14px;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--gold); background: var(--grey-light); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 6px 20px;
  font-size: 13.5px;
  color: var(--text);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--grey-light); color: var(--navy); padding-left: 26px; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 7px;
    border: 1px solid #15265b;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  background: var(--grey-light);
  padding: 10px 0;
  font-size: 13px;
  color: var(--grey-text);
  border-bottom: 1px solid var(--grey-mid);
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb li { list-style: none; display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: '›'; color: var(--grey-mid); }
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:last-child { color: var(--text); font-weight: 600; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-block;
  background: rgba(201,146,59,0.2);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,146,59,0.35);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 16px;
}
.page-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.page-hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-marn {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.marn-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.marn-badge strong { color: var(--white); font-size: 13px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,28,46,0.35); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b07a2a; color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── SECTION SPACING ──────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-dark); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-lead {
  font-size: 17px;
  color: var(--grey-text);
  max-width: 620px;
  line-height: 1.65;
}

/* ── CONTENT LAYOUT ───────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-main h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}
.content-main p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
.content-main ul, .content-main ol {
  margin: 12px 0 20px 20px;
}
.content-main li { margin-bottom: 8px; line-height: 1.65; }
.content-main strong { color: var(--navy); font-weight: 700; }

/* Content table */
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
}
.content-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
}
.content-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--grey-mid);
  vertical-align: top;
}
.content-table tr:nth-child(even) td { background: var(--grey-light); }

/* ── SIDEBAR ──────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.sidebar-card.card-navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.sidebar-card.card-navy .sidebar-card-title { color: var(--gold-light); }
.sidebar-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-light);
}
.card-navy .sidebar-card-title { border-bottom-color: rgba(255,255,255,0.15); }
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.sidebar-contact-item svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.sidebar-contact-item a { color: var(--white); font-weight: 600; }
.sidebar-contact-item a:hover { color: var(--gold-light); }

.agent-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-light);
}
.agent-mini:last-child { border-bottom: none; padding-bottom: 0; }
.agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
}
.agent-mini-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.agent-mini-marn { font-size: 12px; color: var(--grey-text); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { padding: 72px 0; background: var(--off-white); }
.faq-list { max-width: 820px; margin: 36px auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  gap: 12px;
  transition: var(--transition);
}
.logo_sec {
    display: flex;
    justify-content: space-around;
    padding-top: 35px;
}
p.section-sub {
    max-width: 600px;
    padding-bottom: 30px;
}
.cstm_slide .step-card p {
    font-size: 14px;
    color: var(--grey-text);
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.other-services {
      background: var(--navy); border-radius: 16px;
      padding: 2.5rem 2.8rem; margin-top: 1rem;
    }
    .other-services h4 {
      color: #fff;
      font-size: 2rem; margin-bottom: 1.5rem;
    }
    .other-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; }
    .tag {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      color: rgba(255,255,255,0.78);
      padding: 0.45rem 1rem; border-radius: 50px;
      font-size: 0.8rem;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .tag:hover {
      background: #cc1818;
      border-color: #cc1818;
      color: #ffffff;
  }
.faq-q:hover { background: var(--grey-light); }
.faq-q.open { color: var(--red); }
.faq-q .faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 700;
  transition: var(--transition);
}
.faq-q.open .faq-icon { background: var(--red); transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 4px 22px 20px;
  font-size: 15px;
  color: var(--grey-text);
  line-height: 1.75;
  border-top: 1px solid var(--grey-light);
}
.faq-a.open { display: block; }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--grey-text); margin: 0; }

/* ── INFO CARDS ───────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.serv .info-card h3 {
    text-align: center;
    font-size: 18px;
}
.serv .info-card p {
    text-align: center;
}
.serv .info-card img{width: 270px;
    margin: 0 auto 15px;}
.info-card {
  background: var(--white);
  border-bottom: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.borderr{border-radius: var(--radius);}
.info-card.card-red { border-left-color: var(--red); }
.info-card.card-navy { border-left-color: var(--navy); }
.info-card-icon { font-size: 28px; margin-bottom: 10px; }
.info-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--grey-text); margin: 0; line-height: 1.6; }

/* ── ALERT BOX ────────────────────────────────────────────── */
.alert-box {
  background: #FFF8E7;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14.5px;
  color: #6B4800;
}
.alert-box strong { color: #4A3000; }
.alert-box.alert-red {
  background: #FFF2F3;
  border-color: var(--red);
  border-left-color: var(--red);
  color: #7A0E18;
}
.alert-box.alert-navy {
  background: #EEF2FF;
  border-color: var(--navy);
  border-left-color: var(--navy);
  color: #0F1E4A;
}

/* ── IMAGE PLACEHOLDER ────────────────────────────────────── */
.img-placeholder {
  background: var(--grey-light);
  border: 2px dashed var(--grey-mid);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  gap: 8px;
}
.img-placeholder svg { opacity: 0.4; }

/* ── FLOATING BUTTONS ─────────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: var(--transition);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--red); }
.float-btn svg { width: 24px; height: 24px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-main { color: var(--white); font-size: 18px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.45); }
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.60);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.40);
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section.section.blog_grid > div > div, section.d_block_mob > div > div {
    display: block !important;
}

}
@media (max-width: 768px) {
    .footer-bottom.flag_sec, .footer-bottom.flag_sec > div{
    flex-wrap: wrap; justify-content: center; text-align: center;
}
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; box-shadow: var(--shadow-lg); border-top: 2px solid var(--grey-light); gap: 0; }
 .main-nav.open {
    display: flex;
    overflow: auto;
    max-height: 100vh;
}
  .main-nav > li > a { padding: 10px 12px; font-size: 15px; }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 12px; display: none !important; }
  .hamburger { display: flex; }
  .site-header { position: sticky; }
  .topbar-left { display: none; }
 body section.section.d_block_mob >div > div.logo_sec {
    overflow: hidden;
    flex-wrap: wrap;
    display: flex !important;
}
.logo_sec img {
    width: 33%;
    padding: 10px;
}
.other-services {
    padding: 30px 15px;
}
.stories-grid {
    display: flex !important;
    flex-wrap: wrap;
}
.page-hero.d_block_mob{padding: 65px 0 0px!important;}
.page-hero.d_block_mob div > img{padding: 30px 0 0px;}
.dropDown.openMenu + ul.dropdown {
    display: block !important;
}
a.dropDown.openMenu {
    position: relative;
}
#header_menu > li {
    width: 100%;
    display: block;
}
.blog_grid > div article {
    display: flex !important;
    flex-wrap: wrap-reverse;
}
.post_img {
    height: 210px;
    width: 100%;
}
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 40px; }
  .sidebar-card.card-navy {
    margin-top: 30px;
}
}
