/* ===================== 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #F5F6FA;
  color: #183247;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
a {
  color: #35A7FF;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #0e7dc0;
}
ul, ol {
  list-style: inside disc;
  margin-left: 1.5em;
  margin-top: 12px;
  margin-bottom: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #183247;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 700px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
  border: none;
  background: none;
  resize: none;
}

/* ================== BRAND AND PALETTE ===================== */
:root {
  --primary: #183247;
  --secondary: #35A7FF;
  --accent: #F5F6FA;
  --contrast: #fff;
  --danger: #ff3f62;
  --shadow: 0 6px 16px rgba(30, 76, 122, 0.13);
  --radius: 24px;
  --radius-sm: 14px;
  --radius-btn: 30px;
}

/* ============= LAYOUT CONTAINER SPACING - MANDATORY FLEXBOX =========== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  max-width: 730px;
}

/* ======================= HEADER & NAV ========================= */
header {
  background: var(--contrast);
  box-shadow: 0 2px 12px rgba(30,67,122,0.04);
  position: relative;
  z-index: 39;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  position: relative;
  padding: 4px 6px;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 2px;
  margin-top: 2px;
  width: 0;
  background: var(--secondary);
  transition: width 0.3s;
}
.main-nav a:hover::after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(90deg, #35A7FF 70%, #79E5FF 100%);
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 13px 34px;
  box-shadow: 0 4px 18px rgba(53,167,255,0.08);
  transition: box-shadow 0.21s, transform 0.21s, background 0.18s;
  cursor: pointer;
  border: none;
  display: inline-block;
  margin-left: 16px;
  letter-spacing: 0.015em;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #183247 70%, #35A7FF 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(53,167,255,0.18);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

/* ===================== MOBILE NAVIGATION ==================== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 41;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #183247;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 110;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.78,.23,.52,1.07);
  box-shadow: 2px 0 24px rgba(24,50,71,0.20);
  padding: 32px 28px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: var(--primary);
  border: none;
  background: none;
  padding: 2px 2px 8px 2px;
  cursor: pointer;
  margin-bottom: 30px;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  padding: 14px 8px;
  border-radius: 10px;
  transition: background 0.24s cubic-bezier(.33,.33,.3,.97);
}
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--secondary);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }
  .cta-btn {
    padding: 10px 24px;
    margin-left: 7px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 850px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===================== HERO & SECTION STYLES ====================== */
.hero {
  background: linear-gradient(105deg, #35A7FF 0%, #FCE38A 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 0;
  box-shadow: 0 9px 30px rgba(53,167,255,0.06);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  animation: heroPopIn 1.2s cubic-bezier(.12,.82,.17,1.01);
}
@keyframes heroPopIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.975); }
  75% { opacity: 1; transform: translateY(-10px) scale(1.025); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero .content-wrapper {
  padding: 64px 0 52px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.1rem;
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  text-shadow: 0 4px 12px #b6eaff3c;
}
.hero p {
  color: #233D54;
  font-size: 1.18rem;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  .hero {
    margin-bottom: 78px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 900px) {
  .hero .content-wrapper {
    padding: 84px 0 76px 0;
  }
}


.section {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(24, 50, 71, 0.03);
}
.content-grid, .feature-grid, .service-list, .insight-cards, .whitepapers-grid, .team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.feature-grid > div, .service-list > div, .insight-cards > div, .whitepapers-grid > div, .team-member {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: 30px 20px 24px 20px;
  flex: 1 1 230px;
  min-width: 228px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-grid > div:hover, .service-list > div:hover, .insight-cards > div:hover, .whitepapers-grid > div:hover, .team-member:hover {
  transform: translateY(-6px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(53,167,255,0.13);
  background: #ecfcff;
}
.feature-grid img, .service-list img, .feature-item img, .whitepapers-grid img {
  width: 50px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px #35a7ffa8);
  animation: iconBobble 2.7s infinite cubic-bezier(.72,.24,.38,1.78);
}
@keyframes iconBobble {
  0%,100% { transform: translateY(0); }
  22% { transform: translateY(-8px); }
  45% { transform: translateY(0); }
  60% { transform: scale(1.04); }
  80% { transform: translateY(-4px); }
}

/* ============= FUN, PLAYFUL FONTS & VISUALS ============= */
h2, h3 {
  letter-spacing: 0.025em;
}
h2 {
  color: var(--secondary);
  text-shadow: 0 1px 6px #35A7FF22;
}
.feature-grid h3, .service-list h3, .insight-cards h3, .whitepapers-grid h3, .team-member h3 {
  color: #183247;
  font-size: 1.22rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 7px;
}

/* ============= VISUAL ACCENTS AND CARDS ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.21s, transform 0.21s, background 0.18s;
}
.card:hover {
  background: #e7f9ff;
  box-shadow: 0 8px 30px #35a7ff22;
  transform: translateY(-4px) scale(1.028) rotate(2deg);
}

/* ============= TESTIMONIALS ============= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 6px 30px #35a7ff18;
  border-radius: var(--radius-sm);
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 280px;
  transition: transform 0.22s, box-shadow 0.22s, background 0.23s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  background: #fafcff;
  transform: scale(1.032) rotate(-2deg);
  box-shadow: 0 10px 38px #18324722;
}
.testimonial-card p {
  color: #183247;
  font-size: 1.09rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-card div {
  color: #2973a9;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
  margin-bottom: 22px;
}
.partner-logos img {
  width: 60px;
  opacity: 0.85;
  filter: drop-shadow(0 1px 7px #18324721);
  transition: transform 0.18s;
}
.partner-logos img:hover {
  transform: scale(1.07) rotate(2.5deg);
  opacity: 1;
}

/* ============= FLEX LAYOUTS FOR LISTS & CARDS ============= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.contact-info {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.map-location {
  flex: 1 1 320px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}

/* ============= RESOURCES PAGE SPECIAL ============= */
.toolkits-list {
  margin-top: 18px;
}
.whitepapers-grid > div {
  min-width: 240px;
}

/* ============= TEAM SECTION (About) ============= */
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.team-member {
  min-width: 200px;
  flex: 1 1 180px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px 18px;
  margin-bottom: 20px;
  transition: transform 0.19s, box-shadow 0.19s;
}
.team-member:hover {
  transform: rotate(3deg) scale(1.025);
  box-shadow: 0 8px 36px #35a7ff16;
  background: #f1fbfe;
}

/* ============= LEGAL SECTION ============= */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px #1832470c;
  padding: 40px 16px;
  margin-top: 30px;
  margin-bottom: 60px;
}
.legal h1, .legal h2, .legal h3 {
  color: #183247;
}

/* ============= CONFIRMATION (Thank You) ============= */
.confirmation {
  background: #e8f8ff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 20px;
  margin-top: 50px;
  margin-bottom: 72px;
}
.confirmation h1 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* ============= FOOTER ============= */
footer {
  background: var(--primary);
  color: #fff;
  padding: 46px 0 36px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #bbecff;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 3px 8px;
  border-radius: 12px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover {
  background: #35A7FF;
  color: #fff;
}
.footer-contact {
  text-align: center;
  color: #C2E5FA;
  font-size: 0.97rem;
  margin-bottom: 7px;
}
.footer-logo img {
  height: 49px;
  filter: drop-shadow(0 2px 9px #35a7ff2a);
}

/* ============= SPACING ADJUSTMENT FOR MOBILE ============= */
@media (max-width: 900px) {
  .footer-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-grid, .feature-grid, .service-list, .insight-cards, .whitepapers-grid, .team {
    gap: 15px;
  }
  .hero .content-wrapper {
    padding: 34px 0 30px 0;
  }
  .footer-logo img {
    height: 36px;
  }
}

/* ========== FLEX LAYOUT RESPONSIVENESS ========== */
@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .service-list,
  .insight-cards,
  .whitepapers-grid,
  .team {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .text-image-section,
  .contact-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
}

/* ============= BUTTONS & INTERACTIVITY ============= */
button, .cta-btn {
  cursor: pointer;
  border: none;
  outline: none;
}
.cta-btn:active {
  transform: scale(0.98);
}
::selection {
  background: #d2eafe;
}

/* ============= STAT & SNIPPET, HIGHLIGHTS ============= */
.stat-highlights, .case-study-snippets, .toolkits-list, .predictions-highlights {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  margin-top: 23px;
  margin-bottom: 20px;
}
.stat-highlights h3, .case-study-snippets h3, .toolkits-list h3, .predictions-highlights h3 {
  color: #35A7FF;
  font-size: 1.13rem;
  margin-bottom: 13px;
}

/* ============= MARKET ANALYSIS / CHARTS PLACEHOLDER ============= */
.market-analysis-charts {
  border: 2px dashed #afdbff;
  background: #f7fcff;
  border-radius: 15px;
  padding: 24px 16px;
  margin-top: 22px;
  color: #457bb2;
}

/* ============= ACCESSIBILITY: FORCED DARK ON TESTIMONIALS ============= */
.testimonial-card, .testimonial-slider {
  background: #fff !important;
}
.testimonial-card p, .testimonial-card div {
  color: #183247 !important;
}

/* ============= COOKIE CONSENT BANNER & MODAL ============= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #183247;
  color: #fff;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 28px #18324726;
  z-index: 210;
  animation: popCookie 0.45s cubic-bezier(.26,.93,.48,1.17);
}
@keyframes popCookie {
  0% { opacity: 0; transform: translateY(60px) scaleY(0.82); }
  85% { opacity: 1; transform: translateY(-6px) scaleY(1.03); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}
.cookie-banner p {
  margin-bottom: 12px;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-banner button {
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  transition: background 0.22s, color 0.22s;
}
.cookie-banner .accept {
  background: #35A7FF;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #20a1e1;
}
.cookie-banner .reject {
  background: #fbe24e;
  color: #1b3147;
}
.cookie-banner .reject:hover {
  background: #ffe993;
}
.cookie-banner .settings {
  background: #fff;
  color: #35A7FF;
  border: 2px solid #35A7FF;
}
.cookie-banner .settings:hover {
  background: #c6eeff;
}

/* -------- COOKIE MODAL -------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 60%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #183247;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px #18324738;
  z-index: 220;
  padding: 36px 28px;
  min-width: 340px;
  max-width: 90vw;
  animation: cookieModalIn 0.26s cubic-bezier(.26,.93,.48,1.17);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translate(-50%, 80%) scale(0.8); }
  80% { opacity: 1; transform: translate(-50%, -5%) scale(1.04); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal-header {
  font-size: 1.22rem;
  font-weight: 700;
  color: #35A7FF;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.cookie-switch {
  width: 44px;
  height: 24px;
  background: #eaf5ff;
  border-radius: 15px;
  position: relative;
  transition: background 0.2s;
}
.cookie-switch input[type="checkbox"] { display: none; }
.cookie-switch span {
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #35A7FF;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-switch input[type="checkbox"]:checked + span {
  left: 23px;
  background: #23D077;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  border-radius: 22px;
  padding: 9px 20px;
  font-weight: 600;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: background 0.2s;
}
.cookie-modal-actions .save {
  background: #35A7FF;
  color: #fff;
}
.cookie-modal-actions .close {
  background: #fff;
  color: #35A7FF;
  border: 2px solid #35A7FF;
}
.cookie-modal-actions .close:hover {
  background: #c6eeff;
}

/* ============== ANIMATIONS FOR BUTTONS and CARDS ============= */
.cta-btn, .feature-grid > div, .service-list > div, .card, .testimonial-card, .team-member, .insight-cards > div, .whitepapers-grid > div {
  transition: transform 0.21s cubic-bezier(.27,.95,.57,1.17), box-shadow 0.21s, background 0.19s;
}

.cta-btn:focus {
  box-shadow: 0 2px 0 4px #11f9e5ad;
}

/* HELPERS */
.hidden { display: none !important; }
.visually-hidden { position: absolute !important; clip: rect(1px,1px,1px,1px); padding:0 !important; border:0 !important; height:1px; width:1px; overflow:hidden; }

/* ============== Miscellaneous Playful Details ============== */
ul li, .stat-highlights li, .predictions-highlights li, .toolkits-list li, .case-study-snippets li {
  margin-bottom: 8px;
  line-height: 1.7;
  position: relative;
}
ul li::before, .stat-highlights li::before, .toolkits-list li::before {
  content: '•';
  color: #35A7FF;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.07em;
}

/* ========== RESPONSIVENESS FOR TIGHTER PHONES ========== */
@media (max-width: 500px) {
  .testimonial-card, .card, .feature-grid > div, .service-list > div, .team-member {
    min-width: 0;
    max-width: 100%;
    padding: 19px 9px;
  }
  .footer-contact, .footer-nav {
    font-size: 0.88rem;
    gap: 7px;
  }
}

/* ========== ENFORCE FLEXBOX FOR ALL LAYOUTS (NO GRID!) ========== */
/* (already all above layouts covered with display: flex; no grid/columns used) */

/* ========== OVERLAY FOR MODALS ========== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 219;
  background: rgba(22,60,110, 0.29);
  animation: fadeInOverlay 0.25s;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
