/* ===================================================
   CSS RESET & NORMALIZATION                         
   =================================================== */
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, menu, 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, 
main, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  width: 100vw;
  font-size: 16px;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #153154;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18A6A0;
  outline: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
}
::-webkit-input-placeholder { color: #999; opacity: 1; }
::-moz-placeholder { color: #999; opacity: 1; }
:-ms-input-placeholder { color: #999; opacity: 1; }
::placeholder { color: #999; opacity: 1; }

/* ===================================================
   BRAND TYPOGRAPHY & PALETTE: Monochrome Sophisticated
   =================================================== */
:root {
  --ci-primary: #153154;
  --ci-secondary: #18A6A0;
  --ci-accent: #FAFAFA;
  --ci-black: #111;
  --ci-white: #fff;
  --ci-gray-light: #F5F5F5;
  --ci-gray: #d6d6d7;
  --ci-gray-dark: #242424;
  --shadow-card: 0 4px 18px rgba(21,49,84,0.08), 0 1.5px 6px rgba(24,166,160,0.06);
  --radius: 12px;
}
body {
  background: var(--ci-accent);
  color: var(--ci-black);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ci-primary);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.18;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; letter-spacing: -1.5px; }
h2 { font-size: 1.625rem; letter-spacing: -1px; margin-bottom: 16px; }
h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote, address { margin-bottom: 16px; }
p { font-size: 1rem; }
blockquote {
  border-left: 4px solid var(--ci-secondary);
  padding-left: 16px;
  color: var(--ci-primary);
  font-style: italic;
  background: var(--ci-gray-light);
  border-radius: var(--radius);
}
strong { font-weight: bold; }

/* Typography scale for monochrome sophistication */
.cta-primary, .cta-primary:visited {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: var(--ci-primary);
  color: var(--ci-white) !important;
  border-radius: var(--radius);
  padding: 14px 34px;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(21,49,84,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  margin-top: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--ci-secondary);
  color: var(--ci-black) !important;
  box-shadow: 0 5px 14px rgba(24,166,160,0.13);
  text-decoration: none;
}

/* ===================================================
   LAYOUT CONTAINER CLASSES: Only Flexbox
   =================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; background: var(--ci-white); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 24px; }
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--ci-gray-light);
  border-radius: var(--radius);
  box-shadow: 0 2px 7px rgba(24, 166, 160, 0.07);
  margin-bottom: 22px;
  color: #232323;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--ci-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 20px;
}

/* Feature Section Styles */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  list-style: none;
}
.features ul li {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--ci-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.features ul li:hover {
  box-shadow: 0 5px 18px rgba(24,166,160,0.19);
  transform: translateY(-4px) scale(1.015);
}
.features ul li img {
  width: 40px;
  height: 40px;
  filter: grayscale(100%) contrast(1);
  margin-bottom: 6px;
}

/* Insights-specific: flex grid */
.insights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.insight-item {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--ci-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.21s, transform 0.2s;
}
.insight-item a {
  color: var(--ci-secondary);
  text-decoration: underline;
  font-weight: 600;
}
.insight-item a:hover {
  color: var(--ci-primary);
  text-decoration: none;
}
.insight-item:hover {
  box-shadow: 0 4px 20px rgba(21,49,84,0.14);
  transform: translateY(-4px) scale(1.015);
}

/* Services lists */
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  list-style: none;
}
.services ul li {
  min-width: 220px;
  flex: 1 1 260px;
  background: var(--ci-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.services ul li:hover {
  box-shadow: 0 8px 22px rgba(21,49,84,0.15);
  transform: translateY(-2px) scale(1.01);
}

/* Legal/Contact/Events section */
.legal, .contact, .confirmation {
  background: var(--ci-gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px 20px;
  margin-bottom: 60px;
}

/* Tagline highlight */
.tagline-highlight {
  background: var(--ci-accent);
  border-left: 5px solid var(--ci-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  color: var(--ci-primary);
  padding: 12px 24px;
  margin: 24px 0 12px 0;
  border-radius: var(--radius);
  font-weight: 600;
}

/* Lists for bullets */
ul, ol {
  list-style: disc inside;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 16px;
}
ul ul,
ol ol {
  margin-bottom: 0;
}
li {
  margin-bottom: 8px;
}

/* Header Styles */
header {
  width: 100%;
  background: var(--ci-white);
  box-shadow: 0 2px 10px rgba(21,49,84,0.04);
  z-index: 2000;
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-logo {
  height: 44px;
  width: auto;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: var(--ci-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1px;
  padding: 8px 0;
  font-size: 1rem;
}
.main-nav a.cta-primary {
  margin-left: 32px;
  padding: 10px 28px;
  font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--ci-secondary);
}

.mobile-menu-toggle {
  display: none;
  background: var(--ci-secondary);
  color: var(--ci-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  margin-left: 18px;
  transition: background 0.22s;
  z-index: 2999;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--ci-primary);
  color: var(--ci-accent);
}

/* ===================================================
   MOBILE MENU & SLIDEOVER
   =================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(21,49,84,0.96);
  z-index: 4000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.7, 0.2, 0.18, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 26px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--ci-accent);
  font-size: 2rem;
  align-self: flex-end;
  margin: 2px 28px 18px 0;
  border: none;
  cursor: pointer;
  z-index: 5000;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--ci-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
  padding: 0 40px;
  margin-top: 32px;
}
.mobile-nav a {
  color: var(--ci-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.1px;
  font-weight: 600;
  padding: 8px 0 8px 2px;
  border-bottom: 1px solid rgba(250,250,250,0.09);
  width: 100%;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--ci-secondary);
  background: rgba(24,166,160,0.04);
}

/* Hide main nav on mobile, show burger. Implemented below */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .mobile-nav a {
    font-size: 1.075rem;
    padding: 10px 0 10px 2px;
  }
  .mobile-menu-close {
    font-size: 1.7rem;
    margin-right: 10px;
  }
  .mobile-menu {
    padding-top: 9px;
  }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  background: linear-gradient(108deg, var(--ci-accent) 65%, #eef2f3 100%);
  padding: 70px 0 54px 0;
  margin-bottom: 44px;
  width: 100%;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero .content-wrapper {
  gap: 14px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--ci-primary);
  font-size: 2.5rem;
  max-width: 860px;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero p {
  color: #171717;
  max-width: 600px;
  font-size: 1.19rem;
  margin-bottom: 30px;
}
.hero .cta-primary {
  margin-top: 10px;
}

/* ===================================================
   TEAM & EXECUTIVES
   =================================================== */
.executives {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 12px;
}
.executive-bio {
  flex: 1 1 240px;
  min-width: 210px;
  background: var(--ci-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  width: 100%;
  background: var(--ci-black);
  color: var(--ci-accent);
  padding: 0 0 0 0;
  font-size: 0.98rem;
  margin-top: 60px;
}
footer .container {
  padding: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 38px 20px 28px 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--ci-accent);
  opacity: 0.89;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.17s, opacity 0.17s;
  font-size: 1rem;
}
.footer-nav a:hover {
  color: var(--ci-secondary);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
  font-size: 0.95rem;
  color: var(--ci-gray);
}
.footer-contact img {
  width: 54px;
  margin-bottom: 4px;
}
.footer-contact address {
  font-style: normal;
  color: var(--ci-gray);
  font-size: 0.99rem;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(96%) brightness(1.35);
  transition: filter 0.18s, transform 0.18s;
}
.footer-social a:hover img {
  filter: none;
  transform: scale(1.1);
}
footer p {
  flex-basis: 100%;
  margin-top: 18px;
  color: var(--ci-gray);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  opacity: 0.79;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials .testimonial-card {
  background: var(--ci-white);
  color: var(--ci-primary);
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(21,49,84,0.10);
  border-left: 6px solid var(--ci-secondary);
  border-radius: var(--radius);
  padding: 26px 32px;
  font-size: 1.075rem;
  line-height: 1.7;
}
.testimonial-card p {
  font-style: italic;
  color: var(--ci-primary);
  margin-bottom: 10px;
}
.testimonial-card span {
  color: var(--ci-gray-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

/* ===================================================
   FORMS & INPUTS (Search, Newsletter)
   =================================================== */
input[type='text'], input[type='email'], input[type='password'], textarea {
  background: var(--ci-accent);
  border: 1.3px solid var(--ci-gray);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ci-primary);
  margin-bottom: 18px;
  width: 100%;
  box-shadow: none;
  transition: border 0.17s, box-shadow 0.17s;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  border: 1.5px solid var(--ci-secondary);
  box-shadow: 0 1.5px 5px rgba(24,166,160,0.10);
}


/* ===================================================
   RESPONSIVE DESIGN: Mobile First, Flex only
   =================================================== */
@media (max-width: 1024px) {
  .footer-contact, .footer-social {
    min-width: 180px;
  }
  .content-wrapper, .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 860px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 36px;
  }
  .footer-social {
    margin-top: 24px;
  }
  .executives {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials .testimonial-card, .card, .insight-item, .features ul li, .services ul li {
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .main-nav, header .container {
    flex-direction: row;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .features ul {
    flex-direction: column;
    gap: 20px;
  }
  .services ul {
    flex-direction: column;
    gap: 20px;
  }
  .insights-grid {
    flex-direction: column;
    gap: 18px;
  }
  .executives {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 599px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section, .legal, .contact, .confirmation {
    padding: 19px 3px;
  }
  .footer .content-wrapper {
    gap: 18px;
    padding: 18px 4px 14px 4px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
  .footer-social img {
    width: 22px;
    height: 22px;
  }
  .site-logo {
    height: 33px;
  }
}
@media (max-width: 530px) {
  .hero, .features, .services, .about, .cta {
    padding-left: 0!important;
    padding-right: 0!important;
  }
}
@media (max-width: 420px) {
  .testimonial-card, .insight-item, .feature-item, .services ul li, .features ul li {
    padding: 12px 2vw;
  }
  .footer-contact img {
    width: 36px;
  }
}

/* Media for text-image-section (left/right layouts) only flex */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ===================================================
   COOKIE CONSENT BANNER & MODAL
   =================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--ci-black);
  color: var(--ci-accent);
  box-shadow: 0 -3px 16px rgba(21,49,84,0.22);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  font-size: 1rem;
  animation: cookieSlideUp 0.55s cubic-bezier(0.17, 0.62, 0.36, 0.95);
}
@keyframes cookieSlideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner p {
  margin-bottom: 0;
  color: var(--ci-accent);
}
.cookie-btn {
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  border: none;
  display: inline-block;
  min-width: 110px;
}
.cookie-btn.accept {
  background: var(--ci-secondary);
  color: var(--ci-black);
}
.cookie-btn.accept:hover {
  background: var(--ci-white);
  color: var(--ci-secondary);
}
.cookie-btn.reject {
  background: transparent;
  color: var(--ci-accent);
  border: 1.5px solid var(--ci-secondary);
}
.cookie-btn.reject:hover {
  background: var(--ci-secondary);
  color: var(--ci-black);
}
.cookie-btn.settings {
  background: var(--ci-primary);
  color: var(--ci-accent);
}
.cookie-btn.settings:hover {
  background: #243d5a;
}

/* COOKIE MODAL OVERLAY */
#cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,49,84,0.87);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s cubic-bezier(0.7,0.2,0.2,1);
}
#cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
#cookie-modal {
  background: var(--ci-white);
  color: var(--ci-primary);
  border-radius: var(--radius);
  max-width: 410px;
  width: 90vw;
  box-shadow: 0 7px 33px rgba(21,49,84,.22);
  padding: 40px 28px 16px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.28s cubic-bezier(.38,.11,.49,.95);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.98) translateY(14px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
#cookie-modal h2 {
  color: var(--ci-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#cookie-modal label { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; font-size: 1.08rem; }
#cookie-modal input[type='checkbox'] {
  accent-color: var(--ci-secondary);
  width: 19px; height: 19px;
}
#cookie-modal .modal-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 12px;
  background: none;
  border: none;
  color: var(--ci-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.18s;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus {
  color: var(--ci-secondary);
}

/* Responsive Cookie modal */
@media (max-width: 599px) {
  #cookie-modal {
    padding: 23px 8px 10px 12px;
    min-width: 0;
  }
}

/* Hide on print */
@media print {
  header, footer, .mobile-menu, #cookie-banner, #cookie-modal-overlay {
    display: none !important;
  }
}

/* ===================================================
   MICRO-INTERACTIONS
   =================================================== */
.cta-primary, .cookie-btn, .main-nav a, .mobile-nav a {
  transition: background 0.19s, color 0.13s, box-shadow 0.19s, transform 0.18s, opacity 0.17s;
}
.card, .feature-item, .insight-item, .testimonial-card, .services ul li, .features ul li {
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover, .feature-item:hover, .insight-item:hover, .services ul li:hover {
  box-shadow: 0 7px 21px rgba(24,166,160,0.13);
  transform: translateY(-2px) scale(1.012);
}

/* ===================================================
   ACCESSIBILITY: FOCUS VISIBLE
   =================================================== */
:focus-visible {
  outline: 2.5px solid var(--ci-secondary) !important;
  outline-offset: 1.5px !important;
}

/* Extra: Utility class for visually hidden */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap !important;
  border: 0 !important;
}
