html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.services-trigger {
  align-items: center;
  border-radius: 0.375rem;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  padding: 0.5rem 1rem;
  transition: background-color 150ms ease, color 150ms ease;
}

.services-trigger:hover,
.services-nav:hover .services-trigger {
  background: #f1f5f9;
  color: #0f172a;
}

.services-menu {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  display: none;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  left: 0;
  margin-top: 0.375rem;
  padding: 1rem;
  position: absolute;
  top: 100%;
  width: 600px;
  z-index: 60;
}

.services-nav:hover .services-menu,
.services-nav:focus-within .services-menu {
  display: grid;
}

.services-menu p {
  margin: 0;
}

@media (max-width: 767px) {
  .services-menu {
    display: none;
  }
}
