.process {
  padding: 90px 0;
}

.process__container {
  position: relative;
  z-index: 2;
}

.process__items {
  position: relative;
  margin-top: 80px;
}

.process__items .item {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border: 1px solid #424242;
  background: linear-gradient(90deg, #0E0E0E 15.86%, rgba(14, 14, 14, 0) 57.19%);
}

.process__items .item:not(:last-child) {
  margin-bottom: 50px;
}

.process__items .item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #191919 0%, #191919 100%), linear-gradient(90deg, #0E0E0E 15.86%, rgba(14, 14, 14, 0) 57.19%);
  opacity: 0;
  z-index: 1;
  transition: var(--transition);
}

.process__items .item._animated::before {
  opacity: 1;
}

.process__items .item._animated .item__line {
  height: 50px !important;
}

.process__items .item__line {
  position: absolute;
}

.process__items .item:not(:first-child) .item__line {
  top: -50px;
  left: 116px;
  width: 1px;
  height: 0;
  background: #424242;
  z-index: 1;
  transition: var(--transition);
}

.process__items .item__info {
  position: relative;
  z-index: 2;
  max-width: 328px;
}

.process__items .item__title {
  color: #EDEDED;
}

.process__items .item__day {
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 155%;
  color: var(--primary);
  font-size: var(--m);
}

.process__items .item__list {
  position: relative;
  z-index: 2;
  width: 388px;
}

.process__items .item ul li {
  position: relative;
  padding-left: 37px;
  color: #B7B7B7;
  font-size: var(--m);
  line-height: 140%;
}

.process__items .item ul li:not(:last-child) {
  margin-bottom: 17px;
}

.process__items .item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 23px;
  height: 1.5px;
  background: #B7B7B7;
}

.process__pitchili {
  top: 12%;
  right: -37%;
  transform: rotate(-50.49deg) translate3d(0, 0, 0);
}

@media (max-width: 1260px) {
  .process__items {
    margin-top: 50px;
  }

  .process__items .item {
    padding: 30px;
  }

  .process__items .item:not(:last-child) {
    margin-bottom: 30px;
  }

  .process__items .item._animated .item__line {
    height: 30px !important;
  }

  .process__items .item:not(:first-child) .item__line {
    top: -30px;
  }

  .process__items .item__info {
    max-width: 250px;
  }

  .process__items .item ul li::before {
    top: 9px;
  }
}

@media (max-width: 760px) {
  .process {
    padding: 50px 0;
  }

  .process__items {
    margin-top: 30px;
  }

  .process__items .item {
    flex-direction: column;
  }

  .process__items .item:not(:first-child) .item__line {
    left: 42px;
  }

  .process__items .item__day {
    margin-bottom: 10px;
  }

  .process__items .item__list {
    width: 100%;
    margin-top: 35px;
  }

  .process__pitchili {
    right: -57%;
    transform: rotate(268deg) translate3d(0, 0, 0);
  }
}