.key__infos {
  list-style: none;
  gap: 2em 10em;
}

.key__info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.key__info .icon img {
  width: 65px;
  height: 65px;
}
.key__info .title {
  font-size: 1.6em;
  font-weight: 600;
}
.key__info .subtitle {
  font-size: 1.0666666667em;
  font-weight: 400;
}

.steps {
  display: flex;
  align-items: center;
  gap: 100px;
}

.steps__imgs {
  flex: 0 0 auto;
  position: relative;
  width: clamp(320px, 34vw, 560px);
  aspect-ratio: 1/1;
  overflow: hidden;
  max-width: 560px;
}
.steps__imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.steps__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps__item {
  display: block;
}

.steps__number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.steps__head {
  display: flex;
  align-items: center;
  column-gap: 25px;
  flex-wrap: nowrap;
}

.steps__head .steps__title {
  flex: 1;
  min-width: 0;
}

.steps__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}

.steps__subtitle {
  margin: 8px 0 0 0;
  font-weight: 300;
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  .key__infos {
    gap: 2em 6em;
  }
  .steps {
    gap: 60px;
  }
}
@media screen and (max-width: 913px) {
  .key__infos {
    flex-wrap: wrap;
    gap: 1.6em 4em;
  }
  .key__info .icon img {
    width: 56px;
    height: 56px;
  }
  .key__info .title {
    font-size: 1.4666666667em;
  }
  .key__info .subtitle {
    font-size: 1em;
  }
  .steps {
    flex-direction: column;
    gap: 30px;
  }
  .steps__imgs {
    aspect-ratio: 1/1;
  }
  .steps__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 16px;
  }
  .steps__title {
    font-size: 18px;
  }
  .steps__subtitle {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .key__infos {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.6em;
  }
  .key__info {
    max-width: 420px;
  }
  .steps__list {
    grid-template-columns: 1fr;
  }
  .steps__head {
    justify-content: center;
  }
  .steps__subtitle {
    text-align: center;
  }
}
@media screen and (max-width: 568px) {
  .key__infos {
    gap: 1.3333333333em 2em;
  }
  .key__info .icon img {
    width: 48px;
    height: 48px;
  }
  .key__info .title {
    font-size: 1.3333333333em;
  }
  .key__info .subtitle {
    font-size: 0.9333333333em;
  }
  .steps {
    gap: 24px;
  }
  .steps__imgs {
    width: 100%;
    max-width: 100%;
  }
}
