/* =============================================================
   TechVista AU – Minimalist, Responsive CSS (Flexbox Only)
   ============================================================= */
/* 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1C2331;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #00274D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #16A085;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #00274D;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, .subtitle {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #253245;
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 400;
}
.subtitle {
  color: #43526B;
  font-size: 1.18rem;
  margin-bottom: 24px;
}
blockquote {
  font-size: 1.13rem;
  font-style: italic;
  background: #F6F7FB;
  color: #1C2331;
  border-left: 3px solid #16A085;
  margin: 0 0 12px 0;
  padding: 16px 20px 16px 20px;
}
strong { font-weight: 700; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 250;
  box-shadow: 0 1px 8px 0 rgba(28,35,49,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #00274D;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F6F7FB;
  color: #16A085;
}
.main-nav .cta.primary {
  background: #16A085;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  margin-left: 8px;
  box-shadow: 0 2px 12px 0 rgba(22, 160, 133, 0.10);
  border-radius: 22px;
  transition: background 0.18s, box-shadow 0.2s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: #129372;
  box-shadow: 0 3px 24px 0 rgba(22, 160, 133, 0.20);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #00274D;
  cursor: pointer;
  padding: 6px 14px;
  margin-left: 16px;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 999;
  background: #fff;
  top: 0; left: 0; width: 100vw; height: 100vh;
  transition: transform 0.33s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 32px rgba(28,35,49,0.09);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 42px 0 0 0;
  overflow-y: auto;
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2rem;
  color: #00274D;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  z-index: 1001;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #16A085;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
  gap: 16px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #00274D;
  font-size: 1.17rem;
  padding: 10px 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 4px;
  transition: background 0.17s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F7FB;
  color: #16A085;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav .cta.primary {
    padding: 10px 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN HERO SECTION */
.hero {
  background: #F6F7FB;
  padding: 60px 0 60px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.hero .subtitle {
  text-align: center;
  width: 100%;
  max-width: 640px;
}
.hero .cta.primary {
  margin-top: 22px;
}
@media (max-width: 600px) {
  .hero {
    padding: 38px 0 32px 0;
  }
  .hero h1 { font-size: 1.8rem; }
}

/* BUTTONS & LINKS */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 1rem;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s, border 0.12s;
}
.cta.primary {
  background: #16A085;
  color: #fff;
  box-shadow: 0px 3px 16px rgba(22,160,133,0.11);
}
.cta.primary:hover, .cta.primary:focus {
  background: #129372;
  color: #fff;
  box-shadow: 0 6px 32px rgba(22,160,133,0.25);
}
.cta.secondary {
  background: #fff;
  color: #16A085;
  border: 1.5px solid #16A085;
  box-shadow: 0px 2px 8px rgba(22,160,133,0.04);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F6F7FB;
  color: #129372;
  border-color: #129372;
}

/* FLEXBOX SPACING PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(28,35,49,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1 1 320px;
  transition: box-shadow 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(22, 160, 133, 0.13);
}
.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;
  background: #F6F7FB;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(28,35,49,0.07);
  margin-bottom: 20px;
  min-width: 280px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GENERIC LIST & GRID PATTERNS */
.feature-grid, .insight-cards, .service-cards, .testimonial-grid,
.values-grid, .team-list, .innovation-grid, .case-study-grid, .insight-grid, .report-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature-grid li, .feature-item, .insight-card, .service-card, .value-item, .team-member, .innovation-item, .case-study-item, .insight-item, .report-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(28,35,49,0.05);
  padding: 28px 22px 18px 22px;
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 0;
  transition: box-shadow 0.18s;
  position: relative;
}
.feature-grid li:hover, .feature-item:hover, .insight-card:hover, .service-card:hover, .value-item:hover, .team-member:hover, .innovation-item:hover, .case-study-item:hover, .insight-item:hover, .report-item:hover {
  box-shadow: 0 8px 36px 0 rgba(22,160,133,0.11);
}

/* BULLET AND UL LISTS */
.bullet-list, .impact-highlights ul, .key-metrics ul, .project-highlights ul, .benefits-highlight ul, .trending-topics ul {
  margin-top: 6px;
  margin-bottom: 18px;
  padding-left: 14px;
}
.bullet-list li, .impact-highlights ul li, .key-metrics ul li, .project-highlights ul li, .benefits-highlight ul li, .trending-topics ul li {
  list-style: disc inside;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding: 38px 0 38px 0;
  margin-bottom: 60px;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  flex-direction: column;
  align-items: flex-start;
  background: #F6F7FB;
  border-left: 3px solid #16A085;
  min-height: 140px;
  flex: 1 1 280px;
  margin-bottom: 0;
  box-shadow: 0 2px 17px 0 rgba(28,35,49,0.06);
  color: #23334D;
}
.testimonial-meta {
  font-size: 0.97rem;
  font-weight: 600;
  color: #00274D;
  margin-top: 10px;
}
@media (max-width: 680px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

/* CLIENT LOGOS (INDEX) */
.client-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
}
.client-logos img {
  width: 44px; height: 44px;
  filter: grayscale(70%);
  opacity: 0.85;
}

/* SECTION SPECIFIC STYLES */
.about, .features, .services, .values, .team, .testimonials, .insights, .contact-info, .map-hours, .legal, .technology-solutions, .case-studies-featured, .innovations-showcase, .resources {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 60px;
  background: #fff;
}
.values-grid, .team-list {
  gap: 20px;
}

/* TEAM & VALUE SECTIONS */
.value-item, .team-member {
  min-width: 230px;
  flex: 1 1 220px;
  gap: 8px;
  padding: 24px 20px 15px 20px;
  background: #fff;
}
.team-member h3 { margin-bottom: 5px; }
.short-bio {
  color: #43526B;
  font-size: 1.01rem;
  line-height: 1.54;
}

/* SERVICES */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-card {
  background: #fff;
  min-width: 210px;
  flex: 1 1 250px;
  box-shadow: 0 2px 12px 0 rgba(28,35,49,0.06);
  border-radius: 12px;
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s;
}
.service-card:hover {
  box-shadow: 0 6px 32px 0 rgba(22,160,133,0.11);
}

/* INSIGHT/REPORTS */
.insight-cards, .report-list {
  gap: 24px;
}
.insight-card, .insight-item, .report-item {
  background: #fff;
  border-radius: 10px;
  padding: 22px 16px 14px 16px;
  box-shadow: 0 1px 10px rgba(28,35,49,0.05);
  min-width: 180px;
  flex: 1 1 220px;
  transition: box-shadow 0.16s;
}
.insight-card:hover, .insight-item:hover, .report-item:hover {
  box-shadow: 0 6px 18px 0 rgba(22,160,133,0.08);
}
.download-cta {
  margin-top: 22px;
}

/* FOOTER */
footer {
  background: #F6F7FB;
  padding: 40px 0 32px 0;
  color: #00274D;
  border-top: 1px solid #e0e4ef;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.footer-nav a {
  color: #16A085;
  font-size: 1rem;
  opacity: 0.97;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #129372; }
.text-section {
  text-align: center;
  font-size: 0.99rem;
  color: #23334D;
  opacity: 0.97;
  margin-bottom: 10px;
}
.footer-logo img {
  height: 30px;
  opacity: 0.8;
}
.tagline {
  color: #43526B;
  font-size: 1rem;
  opacity: 0.91;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  margin-top: 10px;
}

/* CONTACT PAGE SPECS */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.14rem;
  color: #23334D;
}
.contact-list img {
  width: 22px;
  opacity: 0.70;
}
.business-hours {
  margin-top: 10px;
  font-size: 1rem;
  color: #43526B;
}
.trust-signals {
  margin-top: 18px;
  color: #129372;
  font-weight: 600;
  font-size: 0.99rem;
}
.map-hours .interactive-map {
  border-radius: 12px;
  box-shadow: 0 1px 9px rgba(28,35,49,0.05);
  font-family: 'Montserrat';
  font-size: 1.14rem;
  margin-bottom: 20px;
}

/* LEGAL PAGES (PRIVACY / TERMS / COOKIES / GDPR) */
.legal h1 { font-size: 2.25rem; margin-bottom: 19px; }
.legal h2 { font-size: 1.35rem; color: #16A085; margin-bottom: 14px; }
.legal p,.legal ul { margin-bottom: 16px; }
.legal ul {padding-left: 20px;}
.legal ul li {list-style: disc inside; margin-bottom: 9px;}
.legal a { color: #16A085; }
.legal a:hover, .legal a:focus { text-decoration: underline; }
@media (max-width: 768px) {
  .legal { padding: 30px 8px;}
  .legal h1 { font-size: 1.6rem;}
}

/* RESPONSIVE FLEX & BREAKPOINTS */
@media (max-width: 1040px) {
  .container { max-width: 94vw; }
}
@media (max-width: 920px) {
  .feature-grid, .insight-cards, .service-cards, .testimonial-grid,
  .values-grid, .team-list, .innovation-grid, .case-study-grid, .insight-grid, .report-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 8px; padding-right: 8px; }
  header .container { padding-top: 10px; padding-bottom: 10px; }
  .section, .about, .features, .services, .values, .team, .testimonials, .insights, .contact-info, .map-hours, .legal, .technology-solutions, .case-studies-featured, .innovations-showcase, .resources {
    padding-top: 26px;
    padding-bottom: 26px;
    margin-bottom: 36px;
  }
  .feature-grid, .insight-cards, .service-cards, .testimonial-grid,
  .values-grid, .team-list, .innovation-grid, .case-study-grid, .insight-grid, .report-list {
    gap: 12px;
    min-width: 0;
  }
  .feature-grid li, .feature-item, .insight-card, .service-card, .value-item, .team-member, .innovation-item, .case-study-item, .insight-item, .report-item {
    min-width: 70vw;
    padding: 18px 10px 12px 14px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    padding: 16px 10px;
  }
  .client-logos {
    gap: 18px;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* SPACING RULES & VISUAL HIERARCHY */
section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 700px) {
  section:not(:last-child) { margin-bottom: 38px; }
}
.card + .card, .service-card + .service-card, .testimonial-card + .testimonial-card,
.feature-item + .feature-item, .team-member + .team-member,
.case-study-item + .case-study-item, .insight-item + .insight-item, .report-item + .report-item {
  margin-top: 0;
}

/* TRANSITIONS & INTERACTIONS */
button, .cta, a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.17s, box-shadow 0.18s, color 0.15s, transform 0.17s;
}
.card:hover, .service-card:hover, .feature-item:hover, .testimonial-card:hover, .insight-card:hover,
.value-item:hover, .innovation-item:hover, .team-member:hover, .case-study-item:hover, .insight-item:hover, .report-item:hover {
  transform: translateY(-4px) scale(1.02);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #00274D;
  box-shadow: 0 -4px 22px rgba(22, 160, 133, 0.11);
  border-top: 1.5px solid #e0e4ef;
  z-index: 9000;
  padding: 22px 14px 22px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(0.44,0,0.2,1), opacity 0.2s;
  animation: slideUp 0.5s cubic-bezier(0.44,0,0.2,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-consent-banner .cookie-message {
  font-size: 1rem;
  max-width: 420px;
  color: #253245;
  margin-right: 32px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn.primary, .cookie-btn.secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
  outline: none;
  transition: background 0.13s, color 0.14s, box-shadow 0.16s;
}
.cookie-btn.primary {
  background: #16A085;
  color: #fff;
  font-weight: 700;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #129372;
}
.cookie-btn.secondary {
  background: #fff;
  color: #16A085;
  border: 1px solid #16A085;
  font-weight: 500;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #F6F7FB;
  color: #129372;
  border-color: #129372;
}
.cookie-btn.settings {
  background: #fff;
  color: #00274D;
  border: 1.3px solid #23334D;
  font-weight: 500;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border-color: #16A085;
  color: #16A085;
}
@media (max-width: 540px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 8px;
  }
  .cookie-consent-banner .cookie-message {
    margin-right: 0;
    max-width: 98vw;
  }
  .cookie-consent-banner .cookie-btns {
    gap: 8px;
  }
}

/* COOKIE MODAL DIALOG */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,35,49,0.40);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s cubic-bezier(0.46,0,0.2,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 44px rgba(22,160,133,0.18);
  width: 96vw;
  max-width: 370px;
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 17px;
  position: relative;
  animation: modalUp 0.33s cubic-bezier(0.39,0,0.2,1);
}
@keyframes modalUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #16A085;
  font-size: 1.25rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #23334D;
  font-weight: 500;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  accent-color: #16A085;
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-category.essential label {
  font-weight: 700;
  color: #16A085;
}
.cookie-modal .cookie-category.essential .locked {
  font-size: 0.89rem;
  color: #7786ad;
  margin-left: 4px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 9px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #00274D;
  cursor: pointer;
  padding: 3px 8px;
  transition: color 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #16A085;
}

/* MISC */
.confirmation-meta {
  margin-top: 18px;
  color: #43526B;
  font-size: 1.04rem;
  font-style: italic;
}

/* UTILITY CLASSES (SPACE, VISIBILITY) */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.hide { display: none !important; }

/* FONT-FACE */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* SCROLLBAR STYLING */
::-webkit-scrollbar { width: 10px; background: #F6F7FB; }
::-webkit-scrollbar-thumb { background: #e0e4ef; border-radius: 10px; }

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