/* Matrix Seer Renovierung – Vibrant Energetic CSS
   Brand Colors: #243A4B (primary), #F4F6F7 (secondary), #D68F36 (accent), #203141 (dark primary)
   Fonts: Montserrat (display), Roboto (body)
   Vibrant energetic: electric accents, bold headings, lively spacing, high-contrast UI
 */

/* === 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;
}
/* Modern box-sizing inherit */
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background: #F4F6F7;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #243A4B;
  background: #F4F6F7;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #243A4B;
  transition: color 0.2s cubic-bezier(0.77,0,0.175,1);
}
a:focus {
  outline: 2px solid #D68F36;
  outline-offset: 2px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem; /*40px*/
  margin-bottom: 20px;
  color: #203141;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(214,143,54, 0.13);
}
h2 {
  font-size: 2rem; /*32px*/
  margin-bottom: 16px;
  color: #243A4B;
}
h3 {
  font-size: 1.375rem; /*22px*/
  margin-bottom: 12px;
  color: #D68F36;
  text-shadow: 0 2px 8px rgba(36,58,75,0.07);
}
h4, h5, h6 {
  color: #203141;
}
p, .subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #243A4B;
}
.subheadline {
  color: #D68F36;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
strong {
  font-weight: 700;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  max-width: 750px;
}

/* === SECTION PATTERNS === */
.section, .hero-section, .features, .usp, .about-intro, .about-section, .mission-values, .team-section, .why-us,
.services-intro, .service-details, .process, .cta-section, .projects-intro, .project-cases, .project-process, .testimonials-section, .usp-section, .contact-section, .thankyou-section, .big-cta-section, .privacy-section, .gdpr-section, .cookies-section, .terms-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(36, 58, 75, 0.07);
}

@media (max-width: 768px) {
  .section, .hero-section, .features, .usp, .about-intro, .about-section, .mission-values, .team-section, .why-us,
  .services-intro, .service-details, .process, .cta-section, .projects-intro, .project-cases, .project-process, .testimonials-section, .usp-section, .contact-section, .thankyou-section, .big-cta-section, .privacy-section, .gdpr-section, .cookies-section, .terms-section {
    padding: 30px 8px;
    border-radius: 10px;
    margin-bottom: 32px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: #243A4B;
  color: #ffffff;
  padding: 0;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  min-height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #F4F6F7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 0.16s cubic-bezier(0.77,0,0.175,1);
  padding: 5px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D68F36;
}
.main-nav .button.primary {
  margin-left: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #D68F36;
  border: none;
  font-size: 2.1rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.24s;
  margin-left: 12px;
}
.mobile-menu-toggle:focus {
  background: rgba(214,143,54,0.08);
  outline: 2px solid #D68F36;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #243A4B;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1), opacity 0.36s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #D68F36;
  font-size: 2.3rem;
  font-weight: bold;
  align-self: flex-end;
  margin: 20px 24px 10px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  color: #fff;
  outline: 2px solid #D68F36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 60px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #F4F6F7;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D68F36;
  color: #243A4B;
}

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(90deg, #F4F6F7 60%, #FFF6E5 100%);
  border-radius: 18px;
  box-shadow: 0 8px 28px 0 rgba(214,143,54,0.07);
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-section .content-wrapper {
  max-width: 740px;
}
.hero-section h1 {
  color: #203141;
  font-size: 2.7rem;
}
.hero-section .subheadline {
  color: #D68F36;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 12px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/* === FEATURE SECTIONS === */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F6F7;
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 240px;
  transition: box-shadow 0.22s, background 0.2s;
  box-shadow: 0 2px 18px 0 rgba(36,58,75,0.11);
  position: relative;
  margin-bottom: 20px;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item h3 {
  color: #243A4B;
  font-size: 1.17rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 1rem;
  color: #243A4B;
  opacity: 0.85;
}
.feature-item:hover {
  background: #fff;
  box-shadow: 0 6px 40px 0 rgba(214,143,54,0.17);
  z-index: 2;
}

/* === CARD AND LIST PATTERNS === */
.card-container, .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 3px 18px 0 rgba(36,58,75,0.09);
  position: relative;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.card:hover {
  box-shadow: 0 8px 36px -4px rgba(214,143,54,0.20), 0 1.5px 6px 0 rgba(36,58,75,0.08);
  border-color: #D68F36;
  z-index: 2;
}
.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;
}

@media (max-width: 900px) {
  .features .feature-grid,
  .card-container, .project-list,
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* === USPs, TEAM, VALUES LISTS === */
.usp ul, .usp-section ul, .mission-values ul, .why-us ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 20px 0;
  padding-left: 0;
}
.usp li, .usp-section li, .mission-values li, .why-us li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #203141;
  background: #FFF6E5;
  border-radius: 12px;
  padding: 12px 20px 12px 14px;
  font-weight: 500;
  border-left: 5px solid #D68F36;
  transition: background 0.18s;
}
.usp li:hover, .usp-section li:hover, .mission-values li:hover, .why-us li:hover {
  background: #D68F36;
  color: #fff;
}

/* === BUTTONS === */
.button {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 13px 34px;
  background: #fff;
  color: #243A4B;
  border: 2px solid #D68F36;
  border-radius: 32px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 rgba(36,58,75,0.08);
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.20s;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.button.primary {
  background: #D68F36;
  color: #fff;
  border: 2px solid #D68F36;
  box-shadow: 0 7px 32px 0 rgba(214,143,54,0.17);
}
.button.primary:hover, .button.primary:focus {
  background: #243A4B;
  color: #D68F36;
  border-color: #243A4B;
}
.button.big {
  padding: 17px 52px;
  font-size: 1.16rem;
}
.button:active {
  top: 1px;
  box-shadow: 0 1.5px 4px 0 rgba(36,58,75,0.11);
}

/* === TESTIMONIALS === */
.testimonials-section .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(36,58,75,0.09);
  border-left: 5px solid #D68F36;
  transition: box-shadow 0.19s, background 0.15s;
}
.testimonials-section .testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  color: #243A4B;
  font-style: italic;
  margin-right: 16px;
  line-height: 1.5;
}
.testimonials-section .testimonial-card p {
  font-size: 1rem;
  color: #203141;
  margin-top: 2px;
}
.testimonials-section .testimonial-card:hover {
  background: #F4F6F7;
  box-shadow: 0 7px 32px 0 rgba(214,143,54,0.09);
}
.testimonials-section .testimonial-summary {
  margin-top: 32px;
  font-size: 1.14rem;
  color: #203141;
  background: #FFF6E5;
  padding: 19px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.testimonials-section .testimonial-summary .stars {
  color: #D68F36;
  font-size: 1.22em;
  letter-spacing: 0.09em;
}

/* REVIEW CONTRAST (always dark text on testimonials) */
.testimonials-section .testimonial-card blockquote, .testimonial-card p {
  color: #203141 !important;
}

/* === CONTACT INFO SHORT (index cta) === */
.contact-info-short {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.contact-info-short p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #243A4B;
  background: #F4F6F7;
  border-radius: 8px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.contact-info-short img {
  width: 20px;
  height: 20px;
}

/* === CONTACT SECTION === */
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-section .contact-info p {
  font-size: 1.07rem;
}
.contact-section .map-placeholder {
  margin-top: 12px;
  background: #F4F6F7;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #243A4B;
}
.form-intro {
  margin-top: 22px;
  font-size: 1rem;
  color: #243A4B;
  padding-bottom: 8px;
}

/* === CTA SECTIONS === */
.big-cta-section, .cta-section {
  background: #FFD699;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(214,143,54,0.10);
  text-align: center;
  padding: 44px 10px;
  margin-bottom: 60px;
}
.big-cta-section h2, .cta-section h2 {
  color: #203141;
}

/* === PROJECTS PAGE === */
.projects-intro .text-section {
  margin-bottom: 24px;
}
.project-cases .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-case {
  background: #FFF6E5;
  border-radius: 13px;
  padding: 19px 22px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 220px;
  box-shadow: 0 2px 12px 0 rgba(214,143,54,0.05);
  transition: box-shadow 0.18s;
  position: relative;
}
.project-case h3 {
  font-size: 1.18rem;
  color: #D68F36;
  margin-bottom: 8px;
}
.project-case:hover {
  box-shadow: 0 7px 20px 0 rgba(214,143,54,0.14);
  z-index: 2;
}

/* === FOOTER === */
footer {
  background: #203141;
  color: #F4F6F7;
  border-radius: 24px 24px 0px 0px;
  padding: 36px 0 0 0;
  margin-top: 0;
  box-shadow: 0 -2px 32px rgba(36,58,75,0.07);
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-logo img {
  height: 50px;
  margin-bottom: 8px;
}
footer .tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #D68F36;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 4px;
}
.footer-nav a {
  color: #F4F6F7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #D68F36;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

/* === RESPONSIVE & LAYOUT FLEX RULES === */
@media (max-width: 700px) {
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .features .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .project-cases .project-list {
    flex-direction: column;
    gap: 18px;
  }
  .hero-section {
    margin-bottom: 38px;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  h1 {
    font-size: 1.62rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.12rem;
  }
  .button, .button.primary, .button.big {
    padding: 11px 18px;
    font-size: 0.98rem;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #243A4B;
  color: #fff;
  width: 100%;
  padding: 24px 20px;
  box-shadow: 0px -4px 18px 0 rgba(36,58,75,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.32s cubic-bezier(0.77,0,0.175,1), opacity 0.25s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  font-size: 1.05rem;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 3px;
}
.cookie-actions .button {
  padding: 9px 20px;
  font-size: 1.00rem;
  border-radius: 25px;
  margin-bottom: 0;
  font-weight: 700;
}
.cookie-actions .button.accept {
  background: #D68F36;
  color: #fff;
  border: 2px solid #D68F36;
}
.cookie-actions .button.accept:hover,
.cookie-actions .button.accept:focus {
  background: #fff;
  color: #D68F36;
}
.cookie-actions .button.reject {
  background: #fff;
  color: #243A4B;
  border: 2px solid #243A4B;
}
.cookie-actions .button.reject:hover,
.cookie-actions .button.reject:focus {
  background: #D68F36;
  color: #fff;
  border-color: #D68F36;
}
.cookie-actions .button.settings {
  background: transparent;
  color: #D68F36;
  border: 2px solid #D68F36;
}
.cookie-actions .button.settings:hover,
.cookie-actions .button.settings:focus {
  background: #D68F36;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 14px;
    font-size: 0.98rem;
  }
  .cookie-actions {
    gap: 10px;
  }
}

/* === COOKIE MODAL POPUP === */
.cookie-modal {
  position: fixed;
  z-index: 6000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,58,75,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: #fff;
  color: #243A4B;
  border-radius: 22px;
  min-width: 340px;
  max-width: 96vw;
  padding: 35px 36px 30px 36px;
  box-shadow: 0 8px 40px 0 rgba(214,143,54,0.15), 0 1.5px 9px 0 rgba(36,58,75,0.10);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal-dialog h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #243A4B;
  font-size: 1.38rem;
  margin-bottom: 18px;
  text-align: center;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F4F6F7;
  border-radius: 14px;
  transition: background 0.16s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #D68F36;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 0 2px 6px 0 rgba(36,58,75,0.12);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-close {
  position: absolute;
  top: 26px;
  right: 32px;
  background: none;
  border: none;
  color: #D68F36;
  font-size: 1.68rem;
  cursor: pointer;
  z-index: 1;
  transition: color 0.18s;
}
.cookie-modal-close:focus {
  color: #203141;
}
.cookie-modal-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.cookie-modal-actions .button {
  padding: 9px 24px;
  font-size: 1.05rem;
}
.cookie-category.essential label {
  color: #203141;
  font-weight: 700;
}
.cookie-category.essential .cookie-switch {
  opacity: 0.55;
  pointer-events: none;
}
@media (max-width:500px){
  .cookie-modal-dialog {
    padding: 18px 6px 14px 6px;
    min-width: 0;
  }
}

/* ========== ANIMATIONS [micro-interactions] ========== */
.button, .feature-item, .main-nav a, .footer-nav a, .mobile-nav a, .card, .project-case, .testimonial-card {
  transition-property: background, color, box-shadow, border, border-color, transform;
  transition-timing-function: cubic-bezier(0.77,0,0.175,1);
  transition-duration: 0.18s, 0.16s, 0.22s, 0.18s, 0.15s, 0.18s;
}
.button:active {
  transform: translateY(2px) scale(0.97);
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.03);
}
.card:hover, .project-case:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
}

/* === GENERAL UTILITY CLASSES === */
.text-center { text-align:center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom:0 !important; }
.mb-24 { margin-bottom:24px !important; }
.gap-16 { gap:16px; }
.gap-32 { gap:32px; }

/* Selection */
::selection {
  background: #D68F36;
  color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  background: #F4F6F7;
}
::-webkit-scrollbar-thumb {
  background: #D68F36;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #243A4B;
}

/* Accessibility: hidden visually but accessible */
.sr-only { 
  position: absolute; 
  width: 1px;
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  border: 0;
}
