.process {
  position: relative;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(55px, 6vw, 95px);
  min-height: 940px;
  padding: 80px max(24px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  background: #03131e;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 184, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 184, 236, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.process > * {
  position: relative;
}

.process .process-image {
  height: 780px;
  overflow: hidden;
  border: 1px solid rgba(115, 171, 197, 0.42);
  border-radius: 4px;
}

.process .process-image img {
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  filter: brightness(0.78) saturate(0.9) contrast(1.05);
}

.process .process-copy {
  align-self: center;
  padding: 0;
}

.process .process-copy h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1.08;
}

.process .process-copy > p:not(.eyebrow) {
  color: #aebdc5;
  font-size: 15px;
}

.process .steps {
  margin-top: 48px;
}

.process .steps::before {
  top: 30px;
  bottom: 62px;
  left: 29px;
  background: var(--blue);
}

.process .steps li {
  grid-template-columns: 60px 1fr;
  gap: 30px;
  min-height: 112px;
  margin: 0;
}

.process .steps b {
  width: 60px;
  height: 60px;
  color: var(--blue2);
  background: #03131e;
  border-color: var(--blue2);
  font-size: 15px;
}

.process .steps div {
  min-height: 92px;
  padding: 5px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process .steps li:last-child div {
  border-bottom: 0;
}

.process .steps strong {
  color: #fff;
  font-size: 17px;
}

.process .steps span {
  color: #aebdc5;
  font-size: 12px;
}

html[dir="rtl"] .process .steps::before {
  right: 29px;
  left: auto;
}

@media (max-width: 980px) {
  .process {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-block: 70px;
  }

  .process .process-image {
    height: 620px;
  }

  .process .process-copy {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .process {
    padding-inline: 16px;
  }

  .process .process-image {
    height: 470px;
  }

  .process .process-copy h2 {
    font-size: 44px;
  }

  .process .steps li {
    gap: 20px;
  }
}
