/* ========================================================
   Fluxar Blast Creative Artistic Flex Layout CSS
   Brand colors (primary:#19325B, secondary:#F5A623, accent:#E5EAF5)
   Brand fonts (display: Montserrat, body: Roboto)
   ALL LAYOUTS: FLEXBOX ONLY (NO GRID)
   ======================================================== */

/* ------ 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, 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 {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FCFCFF;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #19325B;
  background: #FCFCFF;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s, box-shadow 0.2s;
  border-radius: 2.5px;
}
a:hover, a:focus {
  color: #19325B;
  text-decoration: underline;
  box-shadow: 0 2px 0 #F5A623;
}

ul, ol {
  margin: 0 0 1.5em 1.2em;
  padding-left: 1em;
  list-style-position: outside;
}

li {
  margin-bottom: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.13;
  color: #19325B;
  margin-bottom: 0.8em;
  word-break: break-word;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.1rem;
  margin-bottom: 0.5em;
  color: #19325B;
  text-shadow: 0 4px 20px #E5EAF590;
  letter-spacing: -0.015em;
}
h2 {
  font-size: 1.4rem;
  color: #F5A623;
  margin-top: 0.5em;
}
h3 {
  font-size: 1.15rem;
  color: #19325B;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #19325B;
}

strong {
  color: #19325B;
  font-weight: 600;
}

p {
  margin-bottom: 1.3em;
  color: #22223b;
}

blockquote {
  border-left: 4px solid #F5A623;
  padding-left: 1em;
  color: #19325B;
  font-style: italic;
  background: #fffbe5;
  margin-bottom: 0.8em;
  font-size: 1.05em;
  border-radius: 0 13px 13px 0;
}

/* Artistic web safe fallback for Montserrat */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,400,300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ----------------- LAYOUT CONTAINERS ------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 32px 0 #e5eaf515;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 18px 0 #e5eaf548;
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E5EAF5;
  border-radius: 16px;
  box-shadow: 0 3px 16px #f5a62318;
  margin-bottom: 20px;
  min-height: 90px;
  font-size: 1.08em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Card stylings for all card-like objects */
.feature-card, .service-card, .team-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px #19325B18;
  padding: 32px 22px 26px 22px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  border: 2.4px solid #E5EAF5;
  transition: box-shadow 0.23s, transform 0.25s;
}
.feature-card:hover, .service-card:hover, .team-card:hover {
  box-shadow: 0 10px 32px 0 #19325B25;
  border-color: #F5A623;
  transform: translateY(-8px) scale(1.025) rotate(-0.8deg);
}
.feature-card img, .team-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 0.7em;
  filter: drop-shadow(0 3px 7px #f5a62322);
}
.price {
  color: #F5A623;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09em;
  margin-top: 0.5em;
}
.team-card span {
  color: #19325B;
  font-size: 1em;
  font-weight: 500;
}
.team-card p {
  text-align: center;
  color: #22223b;
}
.note {
  color: #91a3bc;
  font-size: 0.97em;
  margin-bottom: 0.9em;
}

/* Hero Section Styling */
.hero {
  background: linear-gradient(123deg, #E5EAF5 0%, #fff 70%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 48px;
  padding: 60px 0 36px 0;
  display: flex;
  flex-direction: column;
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  color: #19325B;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(104deg, #19325B 70%, #F5A623 84%, #E5EAF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  font-size: 1.12em;
  margin-bottom: 1.1em;
  color: #305086;
  font-weight: 400;
}

/* ------------ BUTTON & CTAs ------------ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: #19325B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10em;
  font-weight: 700;
  border: none;
  border-radius: 28px 12px 24px 14px;
  box-shadow: 0 3px 24px #F5A62333;
  margin-top: 8px;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: background 0.18s, box-shadow 0.22s, transform 0.22s;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #F5A623;
  color: #19325B;
  box-shadow: 0 7px 36px 0 #19325B24;
  transform: translateY(-3px) scale(1.04) rotate(-1deg);
}

button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background: #F5A623;
  color: #19325B;
  padding: 12px 28px;
  margin-right: 7px;
  margin-bottom: 9px;
  box-shadow: 0 2px 8px #19325B18;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.17s, transform 0.17s;
}
button:hover, button:focus {
  background: #19325B;
  color: #fff;
  box-shadow: 0 9px 25px #f5a62316;
  transform: translateY(-2px) scale(1.028);
}

/* ----- LISTS, BLOG CARDS, FEATURED POST ------ */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 1.5em;
}
.blog-list li {
  background: #fff;
  box-shadow: 0 2.5px 12px #19325B11;
  border-radius: 11px;
  padding: 19px 20px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid #F5A623;
}
.blog-list li h3 {
  font-size: 1.08rem;
  margin-bottom: 0.08em;
  color: #19325B;
  font-family: 'Montserrat', Arial, sans-serif;
}

.featured-posts {
  background: #F5A623;
  padding: 13px 20px;
  border-radius: 12px;
  margin-top: 12px;
  font-size: 1.04em;
  color: #19325B;
}
.featured-posts a {
  color: #fff;
  font-weight: 600;
}
.featured-posts a:hover {
  color: #19325B;
  text-shadow: 0 2px 0 #fffbee44;
}

.blog-categories {
  margin: 2em 0 1.5em 0;
  background: #E5EAF5;
  border-radius: 8px;
  padding: 14px 20px 12px 20px;
  display: flex;
  flex-direction: column;
}
.blog-categories ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0.45em;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.blog-categories li {
  background: #fff;
  color: #19325B;
  border-radius: 16px;
  padding: 5px 16px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1.5px 7px #19325B11;
}

/* ---------------- MAIN NAVIGATION ----------------- */
header {
  width: 100%;
  background: #19325B;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 2px 24px #19325B14;
  position: relative;
  z-index: 90;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.main-nav .logo {
  display: flex;
  align-items: center;
  height: 58px;
  padding-right: 16px;
}
.main-nav .logo img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  list-style: none;
}
.main-nav ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 7px;
  transition: background 0.11s, color 0.19s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F5A623;
  color: #19325B;
}

.main-nav .cta-button {
  margin-left: 16px;
  background: #F5A623;
  color: #19325B;
  padding: 12px 26px;
  border-radius: 24px 10px 22px 12px;
  box-shadow: 0 2px 16px #F5A62344;
  font-weight: 700;
}
.main-nav .cta-button:hover, .main-nav .cta-button:focus {
  background: #19325B;
  color: #fff;
}

/* ------ MOBILE NAVIGATION ------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 15px;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1200;
  padding: 6px 13px;
  border-radius: 50%;
  transition: background 0.21s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E5EAF5;
  color: #19325B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #19325Bd8;
  transform: translateX(-105vw);
  opacity: 0;
  z-index: 1500;
  transition: transform 0.43s cubic-bezier(0.68,0.13,0.14,0.98), opacity 0.25s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 23px 17px 17px 0;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.15s;
  border-radius: 5px;
  padding: 3px 14px 6px 14px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F5A623;
  background: #fff1d6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 1.5em;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22em;
  padding: 16px 0px;
  width: 90vw;
  max-width: 330px;
  text-align: center;
  border-radius: 9px;
  transition: background 0.13s;
  display: block;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover {
  background: #F5A623;
  color: #19325B;
}

/* Hide desktop nav, show hamburger on mobile */
@media (max-width: 980px) {
  .main-nav ul,
  .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ------------- FOOTER ------------- */
footer {
  background: #19325B;
  border-radius: 32px 32px 0 0;
  padding: 34px 0 15px 0;
  color: #fff;
  margin-top: 64px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8em;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  padding: 3px 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.93;
  font-size: 1em;
  font-weight: 500;
  border-radius: 7px;
  transition: background 0.08s, color 0.2s;
}
.footer-nav a:hover {
  background: #F5A623;
  color: #19325B;
}
.footer-info {
  text-align: center;
  color: #fff;
  opacity: 0.89;
  font-size: 0.97em;
}

/* ------------- TEXT SECTIONS & FORMS ------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  margin-left: 1.4em;
}
.text-section a {
  color: #F5A623;
}
.text-section a:hover {
  color: #19325B;
}

/* Contact Info, Forms, Inputs */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border: 2px solid #E5EAF5;
  border-radius: 6px;
  padding: 11px 14px;
  margin-bottom: 16px;
  width: 100%;
  background: #fff;
  color: #212529;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F5A623;
  outline: none;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #19325B;
  font-size: 1em;
  margin-bottom: 7px;
}

/* ------------- TESTIMONIALS ------------- */
.testimonial-card blockquote {
  margin: 0;
  border: none;
  padding: 0;
  color: #19325B;
  background: transparent;
  font-style: italic;
  font-size: 1.02em;
}
.testimonial-card span {
  color: #19325B;
  font-size: 0.98em;
  margin-left: 0.7em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Add illustrated quote symbol for testimonials */
.testimonial-card blockquote:before {
  content: '“';
  color: #F5A623;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3em;
  vertical-align: -0.2em;
  margin-right: 0.18em;
}

/* ------------- COOKIE CONSENT BANNER ------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #19325B;
  box-shadow: 0 -6px 28px #19325B16;
  border-top: 3.5px solid #F5A623;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 18px;
  gap: 38px;
  font-size: 1.07em;
  animation: cookie-slidein 0.72s cubic-bezier(0.6,0.34,0.3,1.01);
}
@keyframes cookie-slidein {
 from { bottom: -120px; opacity: 0; }
 to { bottom: 0; opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 0%;
  max-width: 460px;
  font-size: 1em;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border: none;
  border-radius: 15px 10px 15px 7px;
  padding: 11px 20px;
  cursor: pointer;
  background: #F5A623;
  color: #19325B;
  box-shadow: 0 2px 8px #f5a62313;
  font-weight: 700;
  transition: background 0.14s, color 0.13s;
}
.cookie-banner .cookie-btn:hover {
  background: #19325B;
  color: #fff;
}
.cookie-banner .cookie-btn-reject {
  background: #E5EAF5;
  color: #19325B;
}
.cookie-banner .cookie-btn-reject:hover {
  background: #19325B;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #19325B77;
  z-index: 4000;
  display: none;
}
.cookie-modal-backdrop.active {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadein-modal 0.2s ease;
}
@keyframes fadein-modal {
  from { opacity: 0;} to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 24px #19325B28;
  max-width: 420px;
  width: 100vw;
  min-height: 320px;
  margin: 0 auto;
  padding: 34px 28px;
  position: relative;
  animation: modal-slidein 0.41s cubic-bezier(0.67,0.12,0.19,0.95);
}
@keyframes modal-slidein {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 11px;
  background: none;
  border: none;
  font-size: 1.65em;
  color: #F5A623;
  cursor: pointer;
  transition: color 0.13s;
  border-radius: 7px;
  padding: 1px 10px;
}
.cookie-modal-close:hover {
  color: #19325B;
}
.cookie-modal h3 {
  margin-bottom: 0.8em;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1.5px solid #E5EAF5;
  font-size: 1.06em;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  color: #19325B;
  font-size: 1em;
}
.cookie-switch {
  position: relative;
  width: 36px;
  height: 20px;
  display: inline-block;
  margin-left: 12px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E5EAF5;
  transition: background 0.18s;
  border-radius: 13px;
}
.cookie-switch input:checked + .cookie-slider {
  background: #F5A623;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3.5px;
  width: 12.5px;
  height: 12.5px;
  background: #19325B;
  border-radius: 50%;
  transition: transform 0.22s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(14px);
  background: #fff;
}
.cookie-category[data-essential] .cookie-switch {
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal-actions {
  margin-top: 2em;
  display: flex;
  gap: 12px;
}


/* ----------- RESPONSIVE STYLES ----------- */
@media (max-width: 1180px) {
  .container {
    max-width: 97vw;
    padding: 0 9px;
  }
  .main-nav, .footer-nav {
    max-width: 97vw;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .hero {
    padding: 36px 0 26px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 26px 10px;
    margin-bottom: 46px;
  }
  .feature-card, .service-card, .team-card {
    max-width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  .main-nav, .footer-nav {
    padding: 0 3vw;
  }
  .content-wrapper, .text-section {
    gap: 16px;
    padding: 0;
  }
  .text-image-section, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-card, .service-card, .team-card {
    padding: 23px 12px 18px 12px;
    margin-bottom: 17px;
  }
  .cta-button,
  button,
  input[type="button"],
  input[type="submit"] {
    padding: 12px 19px;
    font-size: 1em;
  }
  .section {
    margin-bottom: 36px;
  }
  .blog-categories ul {
    gap: 7px;
    flex-wrap: wrap;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 8px;
    font-size: 0.98em;
  }
}
@media (max-width: 510px) {
  header, .footer-nav, .footer-info, .main-nav {
    font-size: 1em !important;
  }
  .main-nav .logo {
    height: 36px;
  }
  h1 {
    font-size: 1.32rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .cta-button { padding: 9px 13px; font-size: 0.98em; }
  .cookie-banner { font-size: 0.97em; }
  .cookie-modal {
    padding: 22px 8px;
    max-width: 95vw;
    min-height: 220px;
  }
}

/* ---------- UNIQUE CREATIVE ELEMENTS, SHADOWS, EFFECTS ------------ */
body::before {
  /* Subtle artistic background splash */
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 270px;
  height: 270px;
  background: #F5A62319;
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
  border-radius: 42% 58% 43% 57%/58% 41% 59% 42%;
}
body::after {
  content: '';
  position: fixed;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 210px;
  background: #19325B18;
  filter: blur(88px);
  z-index: 1;
  pointer-events: none;
  border-radius: 53% 47% 36% 64% / 38% 66% 34% 62%;
}

/* Artistic paint stroke for section headers */
h2, h3 {
  position: relative;
  z-index: 2;
}
h2:after {
  content: '';
  position: absolute;
  left: -8px;
  bottom: -7px;
  width: 50%;
  height: 9px;
  background: #F5A62344;
  border-radius: 8px 17px 14px 7px;
  z-index: -1;
}
h2 {
  padding-bottom: 8px;
}

/* ------------ MISC ------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #E5EAF5;
}
::-webkit-scrollbar-thumb {
  background: #F5A62399;
  border-radius: 20px;
}

/* ------------- END CSS ------------- */
