/* RareSpeed Akademie — Scandinavian Clean Design CSS */

/* CSS RESET & BASE
-------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F7FA;
  color: #153958;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #153958;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.42,0,0.58,1);
}
a:focus {
  outline: 2px solid #45A0D2;
  outline-offset: 2px;
}
section, header, footer, main, nav {
  width: 100%;
}

/*-------------------------------------------*/
/* TYPOGRAPHY
-------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #153958;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 18px; }
h2 { font-size: 1.625rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; }
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
}
ul, ol { padding-left: 24px; }
li { margin-bottom: 8px; }
strong,b { font-weight: 700; }
.subheadline { font-size: 1.125rem; color: #45A0D2; font-weight: 500; }

/* RESPONSIVE TYPOGRAPHY */
@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  .subheadline { font-size: 1.25rem; }
}

/*-------------------------------------------*/
/* LAYOUT & CONTAINERS
-------------------------------------------*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(21,57,88,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* Flexbox container utility classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 6px 0 rgba(21,57,88,0.05);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/*-------------------------------------------*/
/* HEADER & NAVIGATION
-------------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #E5EEF2;
  box-shadow: 0 2px 8px 0 rgba(21,57,88,0.02);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  z-index: 25;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
header a img {
  height: 40px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav .cta.primary {
  margin-left: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #153958;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: #45A0D2;
  color: #fff;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/*-------------------------------------------*/
/* MOBILE NAVIGATION
-------------------------------------------*/
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #153958;
    padding: 8px 12px;
    border-radius: 6px;
    margin-left: 12px;
    z-index: 1002;
    transition: background 0.14s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #E5EEF2;
    color: #45A0D2;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,57,88,0.90);
  z-index: 1200;
  transition: opacity 0.32s cubic-bezier(0.42,0,0.58,1), transform 0.32s cubic-bezier(0.42,0,0.58,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(0);
  animation: slideInMenu 0.35s cubic-bezier(0.6, 0, 0.4, 1);
}
@keyframes slideInMenu {
  0% { opacity: 0; transform: translateX(30vw); }
  100% { opacity: 1; transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 20px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 1210;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #45A0D2;
  outline: none;
}
.mobile-nav {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  background: none;
  padding: 14px 32px 14px 0;
  border-radius: 0 24px 24px 0;
  width: 100%;
  text-align: right;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #45A0D2;
  color: #fff;
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/*-------------------------------------------*/
/* HERO SECTION
-------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #F3F7FA 70%, #E5EEF2 100%);
  padding: 60px 0 42px 0;
  margin-bottom: 56px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero .cta.primary {
  margin-top: 16px;
}

@media (min-width: 700px) {
  .hero {
    padding: 96px 0 64px 0;
  }
  .hero h1 { font-size: 3rem; }
}

/*-------------------------------------------*/
/* BUTTONS & CTAs
-------------------------------------------*/
.cta {
  padding: 12px 32px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.16s;
  box-shadow: 0 2px 6px 0 rgba(69,160,210,0.10);
  outline: none;
  margin: 0 5px 0 0;
  text-align: center;
}
.cta.primary {
  background: #153958;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #45A0D2;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(21,57,88,0.11);
}
.cta.secondary {
  background: #E5EEF2;
  color: #153958;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #45A0D2;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(21,57,88,0.09);
}

/*-------------------------------------------*/
/* FEATURE GRIDS & LISTS
-------------------------------------------*/
.feature-grid, .features-list, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 22px 0 0 0;
  padding: 0;
}
.feature-grid > div, .feature-grid > li {
  background: #F3F7FA;
  border-radius: 14px;
  padding: 20px 18px;
  flex: 1 1 236px;
  min-width: 210px;
  max-width: 320px;
  box-shadow: 0 1.5px 8px 0 rgba(21,57,88,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.feature-grid img {
  height: 38px;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 750px) {
  .feature-grid, .features-list, .feature-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .feature-grid > li {
    max-width: 100%;
  }
}
.value-list, .values-list {
  margin: 18px 0;
}

/*-------------------------------------------*/
/* SERVICES / COURSE LISTS
-------------------------------------------*/
.service-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-list li {
  flex: 1 1 260px;
  min-width: 216px;
  background: #F3F7FA;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(21,57,88,0.06);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li span {
  margin-top: 2px;
  color: #45A0D2;
  font-size: 1.125rem;
  font-weight: 600;
}
@media (max-width: 750px) {
  .service-list {
    flex-direction: column;
    gap: 14px;
  }
}

/*-------------------------------------------*/
/* TESTIMONIALS
-------------------------------------------*/
.testimonials {
  background: #E5EEF2;
  border-radius: 16px;
  padding: 48px 0;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(21,57,88,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  color: #153958;
}
.testimonial-card p {
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #153958;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #45A0D2;
  margin-left: 16px;
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 14px;
  }
}

/*-------------------------------------------*/
/* PRICING TABLE
-------------------------------------------*/
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px 0 rgba(21,57,88,0.08);
  border-collapse: collapse;
  margin-bottom: 28px;
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 15px 18px;
  text-align: left;
  color: #153958;
}
.pricing-table th {
  background: #F3F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.pricing-table tr:not(:last-child) {
  border-bottom: 1px solid #E5EEF2;
}
.pricing-table tbody tr:hover {
  background: #EAF3F8;
  transition: background 0.14s;
}
@media (max-width: 600px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table th, .pricing-table td {
    padding: 11px 10px;
  }
  .pricing-table tr { margin-bottom: 18px; }
}

/*-------------------------------------------*/
/* FAQ ACCORDION
-------------------------------------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.faq-accordion > div {
  background: #F3F7FA;
  border-radius: 10px;
  box-shadow: 0 1px 4px 0 rgba(21,57,88,0.06);
  padding: 18px 18px 10px 18px;
  margin-bottom: 8px;
  transition: background 0.17s;
}
.faq-accordion h3 {
  font-size: 1.075rem;
  margin-bottom: 7px;
  color: #153958;
}
.faq-accordion p {
  font-size: 0.97rem;
  color: #45657B;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  background: #E5EEF2;
}

/*-------------------------------------------*/
/* BLOG PREVIEW GRID
-------------------------------------------*/
.blog-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: flex-start;
}
.blog-preview-grid article {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(21,57,88,0.09);
  padding: 20px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.blog-preview-grid article:hover {
  box-shadow: 0 6px 28px 0 rgba(21,57,88,0.13);
  transform: translateY(-4px) scale(1.01);
}
.blog-preview-grid a {
  color: #45A0D2;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 8px;
  transition: color 0.15s;
}
.blog-preview-grid a:hover, .blog-preview-grid a:focus {
  color: #153958;
}
@media (max-width: 700px) {
  .blog-preview-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/*-------------------------------------------*/
/* CONTACT, MAP & THANK YOU
-------------------------------------------*/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #153958;
}
.cta-area {
  display: flex;
  align-items: center;
  margin: 18px 0;
  gap: 18px;
}
.map-embed {
  background: #F3F7FA;
  border-radius: 12px;
  padding: 18px 14px;
  margin-top: 10px;
  font-size: 1rem;
}

.thank-you {
  text-align: center;
  padding: 44px 0 0 0;
}
.thank-you ul {
  margin-top: 18px;
  list-style: disc;
}

/*-------------------------------------------*/
/* LEGAL, ABOUT & INFO PAGES
-------------------------------------------*/
.legal, .about, .text-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(21,57,88,0.06);
  margin-bottom: 42px;
  padding: 36px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 800px) {
  .legal, .about, .text-section {
    padding: 24px 8px;
    margin-bottom: 28px;
  }
}

/*-------------------------------------------*/
/* FOOTER
-------------------------------------------*/
footer {
  background: #153958;
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #E5EEF2;
  padding-bottom: 16px;
}
.footer-logo img {
  height: 36px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.88;
  transition: color 0.15s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #45A0D2;
  opacity: 1;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #E7ECF0;
  opacity: 0.87;
  margin-bottom: 6px;
  font-size: 0.97rem;
}
.footer-contact img {
  height: 16px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/*-------------------------------------------*/
/* COOKIE CONSENT BANNER & MODAL
-------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: #153958;
  box-shadow: 0 -2px 18px 0 rgba(21,57,88,0.07);
  border-top: 1.5px solid #E5EEF2;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 18px 10px 18px 15px;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(0.42,0,0.58,1), opacity 0.21s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  flex: 2 1 300px;
  margin-bottom: 0;
  color: #153958;
}
.cookie-banner .cookie-actions {
  flex: 1 1 auto;
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cta {
  padding: 9px 26px;
  font-size: 1rem;
  border-radius: 20px;
  min-width: 90px;
}
.cookie-banner .cta.primary {
  background: #153958;
  color: #fff;
}
.cookie-banner .cta.primary:hover,
.cookie-banner .cta.primary:focus {
  background: #45A0D2;
}
.cookie-banner .cta.secondary {
  background: #E5EEF2;
  color: #153958;
}
.cookie-banner .cta.secondary:hover,
.cookie-banner .cta.secondary:focus {
  background: #45A0D2;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 15px 10px;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,57,88,0.65);
  justify-content: center;
  align-items: center;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(21,57,88,0.15);
  padding: 36px 28px 30px 28px;
  max-width: 370px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalPopIn 0.36s cubic-bezier(0.57,0,0.43,1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.9) translateY(30px); opacity: 0; }
  80% { transform: scale(1.03) translateY(-2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
  padding: 10px 0;
  border-bottom: 1px solid #E5EEF2;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
/* Cookie toggle switches */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E5EEF2;
  border-radius: 18px;
  transition: background 0.19s;
}
.cookie-toggle input:checked + .cookie-slider {
  background-color: #45A0D2;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 3px #10242f17;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal .cta-area {
  gap: 12px;
  margin: 10px 0;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: #45A0D2;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 3060;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #153958;
}

/*-------------------------------------------*/
/* MICRO-INTERACTIONS & TRANSITIONS
-------------------------------------------*/
button, .cta, .mobile-menu-toggle,
.mobile-menu-close, .cookie-modal-close {
  transition: background 0.18s, color 0.14s, box-shadow 0.14s, transform 0.16s;
}

.card, .feature-grid > div, .feature-grid > li, .testimonial-card, .service-list li, .blog-preview-grid article {
  transition: box-shadow 0.17s, transform 0.18s, background 0.17s;
}
.card:hover, .feature-grid > div:hover, .feature-grid > li:hover, .service-list li:hover {
  box-shadow: 0 4px 22px 0 rgba(69,160,210,0.12), 0 1.5px 8px 0 rgba(21,57,88,0.08);
  transform: translateY(-2px) scale(1.011);
  background: #f0f6fa;
}

input[type="text"], input[type="email"], textarea {
  border-radius: 10px;
  border: 1px solid #E5EEF2;
  padding: 8px 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  transition: border 0.14s;
}
input:focus, textarea:focus {
  border-color: #45A0D2;
  outline: none;
}

/*-------------------------------------------*/
/* SPACING HELPERS
-------------------------------------------*/
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-2 { margin-top: 16px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }

/*-------------------------------------------*/
/* MEDIA QUERIES FOR RESPONSIVENESS
-------------------------------------------*/
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .hero { padding: 40px 0 30px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 7px; }
  footer .container, .section, .legal, .about, .text-section {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section, .legal, .about, .text-section {
    margin-bottom: 22px;
  }
}

/*-------------------------------------------*/
/* OVERRIDES FOR FLEX GAPS WHERE NEEDED
-------------------------------------------*/
/* Already set for: .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item etc. */

/*-------------------------------------------*/
/* SCROLLBAR STYLING (OPTIONAL MODERN LOOK)*/
html::-webkit-scrollbar {
  width: 12px;
  background: #E5EEF2;
}
html::-webkit-scrollbar-thumb {
  background: #CEDCE3;
  border-radius: 8px;
}

/*-------------------------------------------*/
/* SELECTION COLOR */
::selection {
  background: #45A0D2;
  color: #fff;
}

/*-------------------------------------------*/
/* END - Scandinavian Clean CSS for RareSpeed Akademie */
