.focus {
  padding-block: 4rem;
}
.focus__inner {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 1.5rem 1.625rem;
  min-height: 32.875rem;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: end;
}
.focus__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(168, 163, 163, 0.12);
  pointer-events: none;
}
.focus__label {
  position: absolute;
  top: 2rem;
  left: 3rem;
  z-index: 2;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #fffdf9;
}
.focus__composition {
  margin-left: 3rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1017px;
  aspect-ratio: 1017/388;
  display: flex;
  align-items: center;
  justify-content: center;
}
.focus__composition[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}
.focus__composition svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.focus__composition svg > * {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: translateY(10px);
}
.focus__composition svg > path[stroke] {
  opacity: 1;
  transform: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.focus__composition.is-revealed svg > * {
  animation-name: focus-path-in;
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}
.focus__composition.is-revealed svg > path[stroke] {
  animation-name: focus-line-draw;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
}
.focus__composition.is-revealed svg > *:nth-child(1) {
  animation-delay: 0ms;
}
.focus__composition.is-revealed svg > *:nth-child(2) {
  animation-delay: 0ms;
}
.focus__composition.is-revealed svg > *:nth-child(3) {
  animation-delay: 400ms;
}
.focus__composition.is-revealed svg > *:nth-child(4) {
  animation-delay: 900ms;
}
.focus__composition.is-revealed svg > *:nth-child(5) {
  animation-delay: 900ms;
}
.focus__composition.is-revealed svg > *:nth-child(6) {
  animation-delay: 1300ms;
}
.focus__composition.is-revealed svg > *:nth-child(7) {
  animation-delay: 1800ms;
}
.focus__composition.is-revealed svg > *:nth-child(8) {
  animation-delay: 1800ms;
}
.focus__composition.is-revealed svg > *:nth-child(9) {
  animation-delay: 2200ms;
}
.focus__composition.is-revealed svg > *:nth-child(10) {
  animation-delay: 2700ms;
}
.focus__composition.is-revealed svg > *:nth-child(11) {
  animation-delay: 2700ms;
}
.focus__composition.is-revealed svg > *:nth-child(12) {
  animation-delay: 3100ms;
}
.focus__composition.is-revealed svg > *:nth-child(13) {
  animation-delay: 3600ms;
}
.focus__composition.is-revealed svg > *:nth-child(14) {
  animation-delay: 4000ms;
}
.focus__composition.is-revealed svg > *:nth-child(15) {
  animation-delay: 4000ms;
}
.focus__composition.is-revealed svg > *:nth-child(16) {
  animation-delay: 1300ms;
}
@media (prefers-reduced-motion: reduce) {
  .focus__composition svg > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .focus__composition svg > path[stroke] {
    stroke-dashoffset: 0;
  }
}
.focus__side {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: absolute;
  top: 1.5rem;
  right: 1.625rem;
  z-index: 2;
  width: 31.875rem;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  background: rgba(29, 33, 65, 0.33);
  border-radius: 1.375rem;
  color: #fff;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fffdf9;
}
.focus__side::before {
  content: "";
  display: flex;
  width: 2px;
  height: 6.625rem;
  background-color: #e1f1ff;
  border-radius: 1px;
}
.focus__side p {
  margin: 0 0 0.75rem;
}
.focus__side p:last-child {
  margin-bottom: 0;
}
.focus__side strong {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .focus__inner {
    padding: 2.5rem 1.5rem;
  }
  .focus__label, .focus__side {
    position: static;
  }
  .focus__side {
    width: 100%;
    margin-top: 2rem;
  }
  .focus__composition {
    margin-top: 1rem;
  }
}

@keyframes focus-path-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes focus-line-draw {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}