.premier__process {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 4px;
  background-color: #dfdfdf;
  position: absolute;
  left: 50%;
}
.premier__bar {
  background-color: var(--color-primary, #1ab1ff);
}
.premier__dot {
  width: 14px;
  height: 14px;
  background-color: var(--color-primary, #1ab1ff);
  border-radius: 50%;
  outline: 12px solid rgba(26, 177, 255, 0.2);
  margin: -5px;
}
#premier {
  position: relative;
  padding-bottom: 44px;
}
@media all and (max-width: 980px) {
  .premier__process {
    left: 28px;
  }
}

.premier__group {
  padding: 8% 0;
}
.premier__inner {
}
.premier__hgroup {
  flex-basis: 50%;
  position: relative;
}
.premier__title {
  font-size: clamp(1.5rem, 2.291vw, 2.75rem);
  line-height: 1;
  margin-bottom: 1em;
}
.premier__content {
  flex-basis: 50%;
}
.premier__content ul {
  list-style: none;
  padding: 0 !important;
}
.premier__content ul li ~ li {
  margin-top: 60px;
}
.premier__content ul li p {
  margin-top: 1em;
  font-size: 1rem;
  position: relative;
}
.premier__content ul li p::before {
  content: '•';
  display: inline-block;
  margin-right: 0.5em;
}
.premier__images {
  display: flex;
  gap: 30px;
}
.premier__image {
  max-width: 240px;
  position: relative;
}
.premier__image::after {
  content: '';
  display: block;
  height: 10%;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 92%;
  left: 10%;
  right: 10%;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.2;
}
.premier__image img {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

@media all and (min-width: 981px) {
  .premier__inner {
    display: flex;
    justify-content: center;
    gap: 10%;
  }
  .premier__title {
    position: absolute;
    right: 0;
    top: 0;
  }
  .premier__group:nth-child(even) {
    .premier__inner {
      flex-direction: row-reverse;
    }
    .premier__title {
      right: auto;
      left: 0;
    }
    .premier__images {
      justify-content: flex-end;
    }
    .premier__content ul li p {
      text-align: right;
    }
  }
}
@media all and (max-width: 980px) {
  .premier__group {
    padding-left: 44px;
  }
  .premier__images {
    display: flex;
    gap: 16px;
  }
}
@media all and (max-width: 600px) {
  .premier__image {
    max-width: 50%;
  }
}
