@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  color: var(--ew-ink);
  background: var(--ew-white);
  font-family: var(--ew-font-sans);
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.ew-problem-cards,
.ew-solution,
.ew-results,
.ew-team-support {
  scroll-margin-top: 90px;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 90, 20, 0.42);
  outline-offset: 3px;
}

.ew-container {
  width: min(var(--ew-content-width), calc(100% - var(--ew-gutter-pc) * 2));
  margin-inline: auto;
}

.ew-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ew-phase-placeholder {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 360px;
  padding: 56px var(--ew-gutter-pc);
  border-block: 1px dashed var(--ew-border);
  color: var(--ew-muted);
  background: linear-gradient(180deg, var(--ew-white), var(--ew-ivory));
  text-align: center;
}

.ew-phase-placeholder strong {
  color: var(--ew-orange);
  font-size: 18px;
  font-weight: 900;
}

.ew-phase-placeholder span {
  max-width: 720px;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .ew-container {
    width: min(100% - var(--ew-gutter-sp) * 2, var(--ew-content-width));
  }

  .ew-phase-placeholder {
    min-height: 300px;
    padding-inline: var(--ew-gutter-sp);
  }
}
