/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: start;
  color: #212529;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(1.75rem, 1.375rem + 1.5vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 1.325rem + 0.9vw, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 1.3rem + 0.6vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 1.275rem + 0.3vw, 1.5rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  line-height: 1.5;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.dx-container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}