html,
body {
  margin: 0;
  background: #f6f7ff;
}

#root {
  max-width: none;
}

.avatar-left-panel {
  border-radius: 40%;
  background-color: #ffffff;
  border: 2px solid rgba(199, 157, 255, 0.9);
  box-shadow:
    0 0 0 2px rgba(93, 102, 190, 0.35),
    0 0 16px rgba(192, 132, 252, 0.45);
  width: 61.5px;
  height: 61.5px;
  object-fit: cover;
  padding: 3px;
}

.avatar-left-panel:hover {
  box-shadow:
    0 0 0 2px rgba(93, 102, 190, 0.45),
    0 0 20px rgba(192, 132, 252, 0.6);
}

.avatar-twilight {
  border-radius: 9999px;
  background-color: #ff92a1;
  border: 2px solid rgba(187, 154, 247, 0.75);
  box-shadow:
    0 0 0 3px rgba(122, 162, 247, 0.35),
    0 0 18px rgba(122, 162, 247, 0.45),
    0 0 26px rgba(187, 154, 247, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.avatar-twilight:hover {
  box-shadow:
    0 0 0 3px rgba(122, 162, 247, 0.45),
    0 0 20px rgba(122, 162, 247, 0.55),
    0 0 30px rgba(187, 154, 247, 0.45);
}

.about-slider {
  position: relative;
}

.about-slider-track {
  position: relative;
  margin-bottom: 14px;
  min-height: 180px;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.about-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.about-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.about-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: 1px solid #4a63e7;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.about-slider-dot:hover {
  transform: scale(1.1);
}

.about-slider-dot.active {
  background: #4a63e7;
}

#services .services-grid > .service-card-column {
  display: flex;
}

#services .services-grid .service-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.journey-map-wrap {
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.journey-map-wrap svg,
.journey-map-wrap svg * {
  pointer-events: none !important;
}


header nav .vertical-menu {
  display: block !important;
  margin: 0;
  padding: 0;
}

header nav .vertical-menu > li {
  display: block !important;
  line-height: 2.2 !important;
  margin: 0;
  padding: 0.15rem 0 !important;
}

header nav .vertical-menu > li > a {
  display: block !important;
  padding: 0.4rem 0 !important;
  line-height: 2.2 !important;
}

header nav .vertical-menu i {
  margin-right: 16px;
}

@media (min-width: 768px) {
  #contact .contact-details-column {
    padding-right: 26px;
  }

  #contact .contact-form-column {
    border-left: 1px solid rgba(74, 99, 231, 0.28);
    padding-left: 30px;
  }
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #1a1b26;
    color: #c0caf5;
  }

  header.left,
  .mobile-header {
    background: #24283b;
  }

  main.content {
    background: #1a1b26;
    color: #c0caf5;
  }

  .about-slider-dot {
    border-color: #7aa2f7;
  }

  .about-slider-dot.active {
    background: #7aa2f7;
  }

  #contact .contact-form-column {
    border-left-color: #414868;
  }


  .shadow-blue.white-bg {
    background: #1f2335;
    color: #c0caf5;
    border: 1px solid #414868;
    box-shadow: 0 10px 28px rgba(5, 7, 14, 0.45);
  }

  .shadow-blue.white-bg h1,
  .shadow-blue.white-bg h2,
  .shadow-blue.white-bg h3,
  .shadow-blue.white-bg h4,
  .shadow-blue.white-bg h5,
  .shadow-blue.white-bg h6,
  .shadow-blue.white-bg .text-dark,
  header.left .site-title,
  header.left .site-slogan,
  header.left .vertical-menu a,
  header.left .social-icons a,
  header.left .copyright {
    color: #e5e9f0 !important;
  }
}
