/* =====================
   KULTURKOMPASS CSS RESET & BASE
   ===================== */
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, main, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; box-sizing: border-box; 
}
html { scroll-behavior: smooth; }
body { line-height: 1.5; font-family: 'Open Sans', Arial, sans-serif; background: #171B24; color: #E0E3EC; -webkit-font-smoothing: antialiased; }
*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; display: block; height: auto; border-radius: 6px; }
a { color: #FFD072; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #299C8B; outline: none; }
ul, ol { margin-left: 25px; }
ul { list-style-type: disc; }
ol { list-style-type: decimal; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; color: #FFD072; text-shadow: 1px 1px 0 #111613; letter-spacing: 0.5px; margin-bottom: 20px; font-weight: 700; }
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

/* =====================
   BRAND COLORS
   ===================== */
:root {
  --kk-primary: #1A2442;
  --kk-secondary: #299C8B;
  --kk-accent: #FFD072;
  --kk-dark-bg: #171B24;
  --kk-metal: #43484C;
  --kk-light: #F5F7FA;
  --kk-contrast: #222833;
  --kk-shadow: 0 2px 16px 0 rgba(34, 40, 51, 0.12);
  --kk-radius: 14px;
}

/* =====================
   LAYOUT & CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================
   NAVIGATION
   ===================== */
header {
  width: 100%;
  background: var(--kk-primary);
  box-shadow: 0 1px 8px 0 rgba(34, 40, 51, 0.13);
  position: relative;
  z-index: 101;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  height: 80px;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
nav img { height: 40px; margin-right: 12px; }
nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav ul li {
  list-style: none;
  position: relative;
}
nav ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(17,22,19,0.10);
  background: none;
  display: inline-block;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--kk-secondary);
  color: var(--kk-dark-bg);
}
nav ul li .cta-primary {
  background: var(--kk-accent);
  color: var(--kk-primary);
  border: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px 0 rgba(255, 208, 114, 0.18);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
nav ul li .cta-primary:hover, nav ul li .cta-primary:focus {
  background: var(--kk-secondary);
  color: #fff;
  box-shadow: 0 3px 12px 0 rgba(41, 156, 139, 0.15);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--kk-contrast);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 6px 18px 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--kk-accent);
  color: var(--kk-primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, var(--kk-primary) 86%, var(--kk-secondary) 125%);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.58,.14,0,.91);
  z-index: 6000;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  color: var(--kk-accent);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 6001;
  border-radius: 50%;
  transition: background 0.15s;
  width:42px; height:42px; display:flex; align-items:center; justify-content:center;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--kk-secondary);
  color: #fff;
}
.mobile-nav {
  margin: 64px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 26px;
  border-radius: 8px;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: none;
  transition: background 0.2s, color 0.2s;
  margin-left: 12px;
  margin-bottom: 8px;
  width: 96%;
  box-sizing: border-box;
}
.mobile-nav a:last-child {
  background: var(--kk-accent);
  color: var(--kk-primary);
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(255, 208, 114, 0.16);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--kk-secondary);
  color: #fff;
}

/* Hide mobile on desktop, nav on mobile */
@media (max-width: 991px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: linear-gradient(120deg, #1A2442 84%, #299C8B 110%);
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-bottom: 2px solid var(--kk-metal);
  box-shadow:0 4px 36px 0 rgba(34,40,51,0.13);
}
.hero .container {
  align-items: flex-start;
  padding: 32px 0;
}
.hero h1 { color: #FFD072; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(26,36,66,0.21); }
.hero p { font-size: 1.13rem; margin-bottom: 28px; color: #F5F7FA; }
.hero .cta-primary { margin-top: 16px; }

/* =====================
   CTA BUTTONS
   ===================== */
.cta-primary {
  display: inline-block;
  background: var(--kk-accent);
  color: var(--kk-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--kk-radius);
  box-shadow: 0 2px 8px 0 rgba(255, 208, 114, 0.18);
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(255,255,255,0.04);
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.16s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--kk-secondary);
  color: #fff;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 4px 16px 0 rgba(41, 156, 139, 0.19);
  outline: none;
}

/* =====================
   FEATURE GRIDS, CARDS, AND LISTS
   ===================== */
.features {
  padding: 40px 0 20px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  list-style: none;
}
.feature-grid li {
  background: var(--kk-contrast);
  border-left: 4px solid var(--kk-secondary);
  border-radius: var(--kk-radius);
  box-shadow: var(--kk-shadow);
  padding: 28px 26px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.14s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  border-left: 4px solid var(--kk-accent);
  box-shadow: 0 4px 32px 0 rgba(255,208,114,0.17);
  transform: translateY(-6px) scale(1.016);
}
.feature-grid img { height: 44px; filter: grayscale(18%); margin-bottom: 6px; }
.feature-grid h3 {
  color: var(--kk-accent);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.feature-grid p {
  color: #D6D9EA;
  font-size: 1rem;
}

/* features section general */
.features ul,
.features ol {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: #E6E9F2;
}
.features h2 {
  color: var(--kk-accent);
}

/* =====================
   CARD, CARD CONTAINER, GRIDS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 260px;
  background: var(--kk-contrast);
  border-radius: var(--kk-radius);
  box-shadow: var(--kk-shadow);
  padding: 32px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(41,156,139,0.17);
  transform: translateY(-4px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =====================
   TEXT-IMAGE SECTION
   ===================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  padding: 40px 0 30px 0;
}
.testimonials h2 {
  color: var(--kk-accent);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  color: #232427;
  border-left: 5px solid var(--kk-secondary);
  border-radius: var(--kk-radius);
  box-shadow: 0 1px 8px 0 rgba(41,156,139,0.08);
  margin-bottom: 22px;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left: 5px solid var(--kk-accent);
  box-shadow: 0 8px 32px 0 rgba(255,208,114,0.15);
}
.testimonial-card p {
  color: #232427;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.testimonial-card span { color: #607180; font-weight: 500; font-size:0.98rem; letter-spacing: 0.01em; }

/* =====================
   PRICING BOXES
   ===================== */
.pricing {
  background: var(--kk-metal);
  color: #fff;
  border-radius: 10px;
  padding: 22px 30px;
  margin-top: 24px;
  box-shadow: var(--kk-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 1.15rem;
}
.pricing h3 {
  font-size: 1.13rem;
  color: var(--kk-accent);
  margin-bottom: 8px;
}

/* =====================
   ABOUT/TEAM STYLES
   ===================== */
.about-values ul, .about-values ol {
  margin-bottom: 16px;
}
.team-profile {
  background: var(--kk-contrast);
  border-left: 4px solid var(--kk-secondary);
  border-radius: var(--kk-radius);
  box-shadow: 0 1px 10px 0 rgba(41,156,139,0.07);
  padding: 24px 22px 14px 24px;
  margin-bottom: 20px;
  color: #ECEDEF;
  font-size: 1.08rem;
  transition: box-shadow 0.17s, border-color 0.14s;
}
.team-profile:hover, .team-profile:focus {
  border-left: 4px solid var(--kk-accent);
  box-shadow: 0 3px 18px 0 rgba(255,208,114,0.13);
}
.team-profile h3 { color: var(--kk-accent); margin-bottom: 10px; font-size: 1.08rem; }
.team-profile p { color: #E0E3EC; }

.contact-start, .contact-short {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--kk-contrast);
  border-radius: var(--kk-radius);
  box-shadow: var(--kk-shadow);
}

/* =====================
   LEGAL SECTIONS
   ===================== */
.legal, .thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--kk-contrast);
  border-radius: var(--kk-radius);
  box-shadow: var(--kk-shadow);
  color: #E0E3EC;
}
.legal h1, .legal h2, .legal h3, .thankyou h1 {
  color: var(--kk-accent);
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--kk-primary);
  color: #fff;
  padding: 42px 0 32px 0;
  border-top: 1.5px solid var(--kk-metal);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #FFD072;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing:0.02em;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: var(--kk-secondary);
}
.legal-contact {
  color: #C7CACD;
  font-size: 0.99rem;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap:12px;
  justify-content: center;
}
.legal-contact a { color: var(--kk-accent); text-decoration: underline; }
.branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  font-size:1.05rem;
}
.branding img { height: 24px; }
.branding span { color: #FFD072; letter-spacing:0.05em; }

/* ===============================
   COOKIE CONSENT BANNER/MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--kk-dark-bg);
  color: #fff;
  box-shadow: 0 -2px 16px 2px rgba(41,156,139,0.16);
  padding: 28px 18px 22px 18px;
  z-index: 9998;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(.45,0,0,1), opacity 0.18s;
  border-radius: 24px 24px 0 0;
  max-width: 690px;
  margin: 0 auto;
}
.cookie-banner.hidden {
  transform: translateY(200px);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .cookie-banner { max-width: 99vw; flex-wrap: wrap; gap: 18px; padding: 23px 9px 18px 9px; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  flex: 1 1 auto;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--kk-secondary);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 3px;
  box-shadow: 0 2px 8px 0 rgba(41,156,139,0.06);
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: var(--kk-accent);
  color: var(--kk-primary);
}
.cookie-btn.reject {
  background: var(--kk-metal);
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--kk-accent);
  border: 1.5px solid var(--kk-accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--kk-accent);
  color: var(--kk-primary);
  outline: none;
  box-shadow: 0 4px 16px 0 rgba(255,208,114,0.17);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,36,66,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hidden {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: var(--kk-contrast);
  color: #fff;
  border-radius: var(--kk-radius);
  box-shadow: 0 8px 32px 0 rgba(26,36,66,0.17);
  min-width: 320px;
  max-width: 98vw;
  padding: 34px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 { color: var(--kk-accent); font-size: 1.4rem; margin-bottom:9px; }
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #fff;
  margin-right: 8px;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 19px;
  background: var(--kk-metal);
  outline: none;
  border-radius: 17px;
  position: relative;
  transition: background 0.2s;
  vertical-align: middle;
}
.cookie-switch:checked {
  background: var(--kk-secondary);
}
.cookie-switch::after {
  content: '';
  position: absolute; top: 2px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.24s;
}
.cookie-switch:checked::after {
  left: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .cookie-btn {
  min-width: 93px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: var(--kk-accent);
  font-size: 1.6rem;
  line-height: .7;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  width:34px; height:34px; display:flex; align-items:center; justify-content:center;
  transition: background 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--kk-secondary);
  color: #fff;
}

/* =====================
   RESPONSIVE STYLES
   ===================== */
@media (max-width: 991px) {
  .section, .contact-start, .contact-short, .legal, .thankyou {
    padding: 32px 10px;
    margin-bottom: 44px;
  }
  .hero {
    min-height: 220px;
    padding: 18px 0;
    margin-bottom: 44px;
  }
  nav, header nav { padding: 0 8px; }
  .container { padding-left: 5px; padding-right: 5px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; }
  .section, .contact-start, .contact-short, .legal, .thankyou { padding: 18px 4px; }
  .hero { padding: 8px 0; min-height: unset; }
  .content-wrapper { gap: 18px; }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card { padding: 14px 6px 14px 10px; }
  .footer-nav { gap: 10px; }
}
@media (max-width: 700px) {
  nav { gap: 12px; }
  .branding { flex-direction: column; gap: 4px; }
  .legal-contact { flex-direction: column; gap:3px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

/* =====================
   UTILS
   ===================== */
.align-center { align-items: center; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }
.gap-8 { gap: 8px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }

/* =====================
   MICRO-INTERACTIONS
   ===================== */
input[type="checkbox"], input[type="radio"] {
  accent-color: var(--kk-secondary);
}
::-webkit-input-placeholder { color: #BCC0C6; }
::-moz-placeholder { color: #BCC0C6; }
:-ms-input-placeholder { color: #BCC0C6; }
::placeholder { color: #BCC0C6; }

/* =====================
   FOCUS STATES
   ===================== */
a:focus, button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px solid var(--kk-accent);
  outline-offset: 2px;
}

/* =====================
   BRAND TYPOGRAPHY
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
body { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; }

/* =============================
   MISCELLANEOUS & FLESHED SPACING RULES
   ============================= */
ul, ol {
  margin-top: 6px;
  margin-bottom: 18px;
}
li { margin-bottom: 5px; }
section + section, .section + .section, .card + .card, .card + .testimonial-card, .testimonial-card + .testimonial-card { margin-top: 20px; }

/* Prevent overlapping */
*[class*='container'] > * {
  margin-bottom: 20px;
}

/* =============================
   INDUSTRIAL MODERN FEEL
   ============================= */
body {
  background: var(--kk-dark-bg);
  color: #E0E3EC;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-family: 'Open Sans', Arial, sans-serif;
}
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(41,156,139,0.13);
  letter-spacing: 0.5px;
}

.card, .feature-grid li, .team-profile, .testimonial-card, .pricing {
  border: 1.5px solid #232A37;
  background: linear-gradient(97deg,#232A37 91%, #242c3a 120%);
}

.card, .feature-grid li, .team-profile, .pricing {
  box-shadow: 0 2px 18px 0 rgba(41,156,139,0.07);
}

/* Metallic accent for borders/icons */
.card, .feature-grid li, .team-profile, .pricing, .testimonial-card {
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: var(--kk-metal);
}

/* Urban deco with metallic feel on icons */
.feature-grid img, .team-profile img {
  filter: grayscale(22%) brightness(1) contrast(1.1) drop-shadow(1px 2px 1px #232a37);
}

/* Section Dividers */
.section, section {
  border-bottom: 1.5px solid #232A37;
}

/* =============================
   SCROLLBAR
   ============================= */
::-webkit-scrollbar { width: 10px; background: #232A37; }
::-webkit-scrollbar-thumb { background: #43484C; border-radius: 6px; }

/* =============================
   END OF STYLE.CSS
   ============================= */
