/* =========================
   FINAL CLEANED / MERGED CSS
   (copy & replace)
   ========================= */

/* ========== VARIABLES & BASE ========== */
:root{
  --brand-purple: #1193d1;
  --muted: #6c6f76;
  --accent: #3b8b8b;
  --heading-dark: #0f2a44;
  --body-color: #222;
}

html, body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  

  font-size: 16px;
  color: var(--body-color);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ========== TOP BAR ========== */
.topbar {
  background: #fff;
  border-bottom: 2px solid #e6e6e6;
}
.brand { font-weight: 700; letter-spacing: 0.2px; }

/* ========== HERO ========== */
.hero {
  background: var(--brand-purple);
  color: #fff;
  padding: 20px 0 30px;
}
.hero .feature-tag {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.95;
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  margin-top: 20px;
  font-size: 2.2rem;
  line-height: 1.35;
  width: 75%;
  font-weight: 400;
  color: #fff; /* keep hero title white for contrast */
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 20px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all .2s ease;
}
.hero-btn svg { width: 14px; height: 14px; stroke: currentColor; }
.hero-btn:hover { background: #fff; color: var(--brand-purple); }

@media (max-width: 768px) {
  .hero h1 { font-size: 1.6rem; width: 100%; }
  .hero .container { padding-left: 15px; padding-right: 15px; }
}

/* ========== ACTION STRIP ========== */
.action-strip {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 10px 0;
}
.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: var(--brand-purple);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  min-width: 235px;
  justify-content: flex-start;
  border: none;
  border-radius: 0;
}
.action-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.action-btn .oa { background: rgba(255,255,255,0.18); padding: 3px 8px; border-radius: 3px; font-weight: 700; font-size: 13px; }
.action-btn:hover { background: #0d82b8; }

@media (max-width: 500px) { .action-btn { width: 100%; min-width: unset; } }

/* ========== NAVIGATION ========== */
.nav-custom { background: #f5f5f5 !important; border-bottom: 1px solid #ddd; padding: 14px 0; }
.nav-custom .nav-link {
  color: #222 !important;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: .18s ease;
}
.nav-custom .nav-link:hover { color: var(--brand-purple) !important; border-bottom-color: var(--brand-purple); }

/* ========== TOP LINKS ========== */
.top-link {
  font-weight: 400 !important;
  color: #333 !important;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  margin-left: 18px;
  text-decoration: none;
  transition: .16s;
  font-size: 18px;
}
.top-link:hover { color: var(--brand-purple) !important;}
/* Big blue buttons – common style */
.action-strip {
    background-color: #ffffff;   /* ya jo bhi aapka bg hai */
}

.action-strip .action-btn {
    background-color: #0088cc;      /* HE wala blue */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0;               /* flat edges jaise screenshot me */
    border: none;
    white-space: nowrap;            /* text wrap na ho desktop pe */
}

/* svg icons */
.action-strip .action-btn .icon svg {
    display: block;
}

/* small arrow on Submit */
.action-strip .action-btn .chev {
    font-size: 0.9rem;
}

/* hover */
.action-strip .action-btn:hover {
    background-color: #0071aa;
    color: #fff;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 767.98px) {

    /* row ko column bana do, full-width buttons */
    .action-strip .d-flex {
        flex-direction: column;
        align-items: stretch;   /* full width */
        gap: 0.75rem;
    }

    .action-strip .action-btn {
        width: 100%;           /* full-width button */
        font-size: 0.95rem;
        padding: 9px 12px;
        white-space: normal;   /* zarurat pade to 2 line me bhi aa sakta hai */
    }

    .action-strip .action-btn .label {
        text-align: center;
    }
}

/* ðŸ”¹ Remove unwanted gap between header and banner on mobile */
@media (max-width: 767.98px) {
    .topbar {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    nav.navbar {
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Optional: removes any container bottom spacing */
    .topbar .container {
        padding-bottom: 0 !important;
    }

    /* If the banner image section has margin-top */
    .banner,
    .hero,
    .main-banner,
    .page-banner {
        margin-top: 0 !important;
    }
}
/* Submit steps row */
.submit-steps .step-items {
    justify-content: space-between;   /* circles ke beech equal gap */
    gap: 0;                           /* bootstrap gap effect remove */
}

.submit-steps .step-item {
    flex: 1 1 0;                      /* sabka width approx equal */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* thoda responsive tweak chhote screens ke liye */
@media (max-width: 768px) {
    .submit-steps .step-items {
        flex-wrap: wrap;
        row-gap: 1rem;
    }
}

/* ========== SECTION BACKGROUNDS ========== */
.section-bg { background: #f5f5f5; padding: 40px 25px; border-radius: 6px; }
.section-bg-full { width:100%; background: #f5f5f5; padding: 40px 0 40px; }
.section-bg-full .card { border: none; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }

/* ========== CURRENT ISSUE ========== */
.current-issue { padding: 36px 0; }

/* Left issue cover */
.issue-cover { text-align: left; }
.issue-cover img {
  max-width: 175px;
  display: block;
  margin: 0 0 12px 0;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.issue-meta { font-size: 14px; color: var(--muted); margin-bottom: 10px; }

/* Issue-cover buttons (Lancet-like) */
.issue-cover .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
  border-radius: 2px;
  transition: background .15s ease, color .15s ease, transform .12s ease;
  white-space: nowrap;
}

.issue-cover .download-btn {
  
     background: #1193d1!important;
    color: #ffffff;
    border: 1px solid #c9c9c9;
    width: 66%;
    justify-content: flex-start;
    box-shadow: none;

}
.issue-cover .download-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.issue-cover .toc-btn {
  background: var(--brand-purple);
  color: #fff;
  border: none;
  width: 58%;
  justify-content: center;
  font-weight: 600;
}
.issue-cover .toc-btn .chev { margin-left: 8px; display:inline-block; transform: translateY(0); }

@media (max-width: 520px) {
  .issue-cover .download-btn, .issue-cover .toc-btn { width: 100%; }
}

/* ========== FEATURE CARDS ========== */
.current-issue .feature-card {
  border: 1px solid #eee;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.current-issue .feature-card .card-img-top { width: 100%; height: 140px; object-fit: cover; }
.current-issue .feature-card .card-body { padding: 16px; }
.current-issue .feature-card .card-title { font-size: 16px; margin-bottom: 8px; color: var(--heading-dark); font-weight: 600; }
.current-issue .feature-card .card-meta { color: var(--muted); font-size: 13px; }

@media (max-width: 991px) { .current-issue .feature-card .card-img-top { height: 120px; } }
@media (max-width: 575px) { .issue-cover img { max-width: 140px; } }

/* ========== CARDS / CATEGORY / ARTICLE TITLE ========== */
.category {
    font-size: 13px;
    font-weight: 600;
    color: #202020;
    text-transform: capitalize;
    margin-bottom: 8px;
}
/* article-title: brand blue as requested */
.article-title {
  display: block;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.44;
  text-decoration: none;
  color: #606060; /* brand blue */
  transition: color .18s ease, text-decoration-color .18s ease;
}
.article-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #1193d1;
}
p.article-title1 {
    font-size: .8125rem;
    color: #606060;
    line-height: 18px;
}
/* ========== EDITOR'S PICK (strip) ========== */
.editors-pick-wrap {
  background: var(--brand-purple);
  padding: 48px 0;
  color: #fff;
}
.editors-pick-wrap .container { max-width: 1180px; }
.editors-pick-wrap .ep-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 22px;
  font-weight: 600;
}

/* equal-height cards */
.editors-pick-wrap .row.g-4 > [class*="col-"] { display: flex; align-items: stretch; }
.ep-card { display: flex; flex-direction: column; width: 100%; background: transparent; border: none; }
.ep-card-body {
  background: #fff;
  color: var(--heading-dark);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 230px;
}
.ep-card-body .category, .ep-card-body .categoryy { font-size: 12px; font-weight: 600; color: #505050; text-transform: uppercase; margin-bottom: 6px; }
.ep-card-body .article-title { color: var(--brand-purple); font-size: 18px; line-height: 26px; text-decoration: none; margin-bottom: 12px; display:block; font-weight: 400; }
.ep-card-body .article-title:hover { text-decoration: underline; text-underline-offset: 3px; }
.ep-card-body .of-date { color: var(--muted); font-size: 14px; margin-top: 12px; font-weight: 600; }
.ep-card .card-img-top { width: 100%; height: 140px; object-fit: cover; display:block; margin-bottom: 10px; }

@media (max-width: 767px) {
  .editors-pick-wrap { padding: 30px 0; }
  .ep-card-body { min-height: unset; }
  .ep-title { font-size: 24px; }
  .ep-card .card-img-top { height: 160px; }
}

/* optional maroon variant */
.editors-pick-wrap.ep-maroon { background: #8b0b2e; }

/* ========== UNIFIED SECTION HEADINGS ========== */
.section-heading, .section-title, h2.section-title, .container > h4, .container > h3 {
  color: var(--heading-dark);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.current-issue h3, .current-issue h3.h5, .current-issue .h5 {
  color: var(--heading-dark) !important;
  font-weight: 600 !important;
  font-size: 1.45rem;
  margin-bottom: 16px;
}
.online-first h4, .online-first .section-title { color: var(--heading-dark) !important; font-weight: 600 !important; }

/* small utilities */
.small-muted, .of-date, .issue-meta, .card-meta { color: var(--muted) !important; }

/* ========== FOOTER ========== */
.le-footer {
  background: #fff;
  color: #222;
  padding: 10px 0 10px;
  font-family: inherit;
  border-top: none;
}

/* Top small title + social icons */
.footer-logo-wrap { text-align: center; padding: 34px 0 8px; }
.footer-topline { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #333; font-style: italic; }
.footer-social { display: flex; justify-content: center; gap: 0px; margin-bottom: 12px; }
.footer-social .soc { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: #333; text-decoration: none; transition: .2s; border-radius: 4px; }

/* Footer columns */
.container-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 8px 20px; }
.footer-col h6 { color: var(--heading-dark); font-size: 13px; letter-spacing: 0.4px; margin-bottom: 12px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #333; text-decoration: none; font-size: 14px; }
.footer-col ul li a:hover { color: var(--brand-purple); text-decoration: underline; }

/* CONTACT icon alignment inside footer */
.contact-list li { display: flex; align-items: center; gap: 8px; line-height: 1.35; }
.contact-list li i { min-width: 20px; text-align: center; font-size: 16px; }

/* bottom disclaimer */
.footer-bottom { max-width: 1100px; margin: 28px auto 0; padding: 18px 20px 0; display: flex; justify-content: space-between; align-items: center; color: #666; }
.footer-disclaimer { text-align: center; font-size: 14px; color: #444; }
.footer-policy-links a { text-decoration: none; color: var(--brand-purple); }
.footer-policy-links a:hover { text-decoration: underline; }

.soc { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; margin-right: 8px; color: #333; text-decoration: none; transition: .2s; }
.soc i { font-size: 14px; }
.soc:hover { background: var(--brand-purple); color: #fff !important; border-color: var(--brand-purple); }

/* responsive */
@media (max-width: 992px) { .container-grid { grid-template-columns: repeat(2, 1fr); } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }
@media (max-width: 576px) { .container-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 14px; } .le-footer { padding: 18px 0 30px; } }

/* small helpers */
.section-heading + *, .current-issue h3 + *, .ep-title + * { margin-top: 6px; }

/* ========== JOURNAL INFO (two-column) ========== */
.journal-info-section { padding: 48px 0; background: #fff; color: #222; font-family: inherit; }
.journal-info-section .container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.journal-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.journal-desc h2 { font-size: 28px; color: var(--heading-dark); margin: 0 0 14px 0; font-weight: 700; }
.journal-desc p { font-size: 16px; line-height: 1.7; color: #333; margin: 0 0 12px 0; }
.journal-meta { background: #fafafa; border: 1px solid #eee; padding: 18px; border-radius: 4px; }
.journal-meta ul { list-style: none; padding: 0; margin: 0 0 12px 0; }
.journal-meta li { font-size: 15px; color: #222; margin-bottom: 10px; }
.journal-meta a { color: #1193d1; text-decoration: none; }
.journal-meta a:hover { text-decoration: underline; }
.btn-download { display: inline-block; background: #1193d1; color: #fff; padding: 8px 14px; text-decoration: none; font-weight: 600; border-radius: 3px; transition: background .18s ease, transform .12s ease; }
.btn-download:hover { background: #0d82b8; transform: translateY(-2px); }

@media (max-width: 980px) {
  .journal-grid { grid-template-columns: 1fr; }
  .journal-meta { margin-top: 20px; }
}

/* ========== ACCESSIBILITY / CONTRAST NOTES ========== */
/* If any section uses a dark background (hero, editors-pick), ensure text contrast.
   Hero and editors-pick headings are white by default; many other headings are set to var(--heading-dark). */

/* End of final CSS */
.journal-meta b,
.journal-meta strong {
  font-weight: 500;            /* <-- change to 400 if you want fully normal */
  color: #111 ;                 /* darker label color if you want subtle contrast */
}
.of-date {
    padding-top: 12px;
    padding-bottom: 12px;
}
/* === Footer Background + Text Color Update === */
.le-footer {
    background: #1193d1 !important;   /* footer full background */
    color: #fff !important;            /* text color white */
}

/* Footer headings white */
.le-footer h6 {
    color: #fff !important;
}

/* Footer small text (ISSN) */
.footer-topline,
.footer-topline .issn {
    color: #fff !important;
}

/* Footer links */
.le-footer a {
    color: #fff !important;
}
.le-footer a:hover {
    color: #e9e9e9 !important;  /* light white hover */
}

/* Social icons */
.le-footer .soc {
    color: #fff !important;               /* icon color */
    /* border: 1px solid rgba(255,255,255,0.6); */
}
.le-footer .soc:hover {
    background: #fff !important;
    color: #1193d1 !important;
}

/* Divider lines in footer */
.le-footer hr,
.le-footer .footer-divider {
    border-color: rgba(255,255,255,0.4) !important;
}
/*publication-ethics*/
/* For overall readability */
.publication-ethics {
  padding: 40px 0;
}

/* Headings spacing and color */
.publication-ethics h5 {
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #004b6b;
}

/* Paragraphs readability */
.publication-ethics p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #6c6f76;
  font-size: 15.5px;
}

/* List spacing */
.publication-ethics ul,
.publication-ethics ol {
  margin: 8px 0 15px 25px;
  line-height: 1.7;
}

/* Keep list bullets subtle */
.publication-ethics ul li,
.publication-ethics ol li {
  margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .publication-ethics h5 {
    font-size: 1rem;
  }
  .publication-ethics {
    padding: 25px 10px;
  }
}


/* ===== Editorial board cards ===== */
.editorial-board {
  background: #ffffff;
}

.editorial-group-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-top: 24px;
  margin-bottom: 12px;
}

.editor-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  padding: 16px 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editor-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.editor-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f2a44;
  margin-bottom: 2px;
}

.editor-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.editor-affil {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0;
}

/* Button style to match site */
.editor-card .btn-outline-primary {
  border-radius: 2px;
  font-size: 0.85rem;
  padding: 6px 12px;
}

/* Modal text readability */
.modal-body p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.editor-message {
  background: #fff;
}
.editor-message p {
  line-height: 1.8;
  color: #222;
}
.editor-message img {
  max-width: 100%;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .editor-message .row {
    text-align: center;
  }
  .editor-message img {
    margin-top: 20px;
  }
}

/* Fixed vertical social sidebar */
/* Fixed vertical social sidebar */
.social-fixed {
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 9999;
}

.social-fixed ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-fixed ul li {
  position: relative;
 /*  margin: 2px 0; */
  background: #000;
  width: 40px;
  height: 40px;
  text-align: center;
 /*  border-radius: 4px 0 0 4px; */
  overflow: visible;          /* label box se bahar aa sake */
  transition: all 0.3s ease;
}

.social-fixed ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  height: 100%;
  width: 100%;
  position: relative;
}

/* Tooltip label */
/* ====== RIGHT SIDE SOCIAL BAR LABEL + CORNER ====== */
.social-fixed ul li a span {
  position: absolute;
  right: 52px;                 /* icon se thoda aur door */
  background: #1a73e8;
  color: #fff;
  padding: 10px 14px;
 /*  border-radius: 4px; */
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 6px rgba(0,0,0,0.35);  /* halka shadow, shape clear dikhe */
}

/* Triangle corner */
.social-fixed ul li a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;                /* label se bahar nikla hua */
  transform: translateY(-50%);
  border-style: solid;
  border-width: 10px 0 10px 10px;  /* bada triangle */
  border-color: transparent transparent transparent #1a73e8;
}


/* Hover effect - show label */
.social-fixed ul li:hover a span {
  opacity: 1;
  transform: translateX(0);
}



/* Brand-specific hover color */
/* ===== SOCIAL HOVER COLORS FOR BOTH ICON + LABEL ===== */

/* Facebook */
.social-fixed ul li.facebook:hover { background: #3b5998; }
.social-fixed ul li.facebook:hover a span {
  background: #3b5998;
}
.social-fixed ul li.facebook:hover a span::after {
  border-color: transparent transparent transparent #3b5998;
}

/* Twitter */
.social-fixed ul li.twitter:hover { background: #1da1f2; }
.social-fixed ul li.twitter:hover a span {
  background: #1da1f2;
}
.social-fixed ul li.twitter:hover a span::after {
  border-color: transparent transparent transparent #1da1f2;
}

/* YouTube */
.social-fixed ul li.youtube:hover { background: #ff0000; }
.social-fixed ul li.youtube:hover a span {
  background: #ff0000;
}
.social-fixed ul li.youtube:hover a span::after {
  border-color: transparent transparent transparent #ff0000;
}

/* LinkedIn */
.social-fixed ul li.linkedin:hover { background: #0077b5; }
.social-fixed ul li.linkedin:hover a span {
  background: #0077b5;
}
.social-fixed ul li.linkedin:hover a span::after {
  border-color: transparent transparent transparent #0077b5;
}

/* Instagram */
.social-fixed ul li.instagram:hover { background: #e4405f; }
.social-fixed ul li.instagram:hover a span {
  background: #e4405f;
}
.social-fixed ul li.instagram:hover a span::after {
  border-color: transparent transparent transparent #e4405f;
}

/* Footer bottom full width color style */
.footer-bottom {
  background: #006ba1; /* Deep blue for better contrast */
  color: #fff;
  padding: 14px 0;
  font-size: 15px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-bottom p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-bottom strong {
  color: #fff;
  font-weight: 600;
}

/* Stylish Password Eye Icon */
.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: #005fa3; /* Health Empirics blue */
}

input.form-control:focus + .toggle-password,
input.form-control:focus ~ .toggle-password {
  color: #005fa3;
}

.form-control.pe-5 {
  padding-right: 2.5rem; /* space for icon */
}
.alert-link {
  color: #00487a;
  font-weight: 600;
  text-decoration: underline;
}
.alert-link:hover {
  color: #002f4a;
  text-decoration: none;
}
.top-link {
  color: #005fa3;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.top-link:hover {
 
  color: #00487a;
}
.dropdown-menu a {
  font-size: 14px;
}
