.steps-wrapper {
  padding-bottom: var(--steps--padding-bottom);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  max-width: 775px;
  margin: auto;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: auto;
  max-width: 730px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  word-break: break-word;
  text-align: center;
  color: var(--steps--text-color);
}

.step h3 {
  font-size: 18px;
  margin-top: 14px;
  font-weight: var(--steps--heading-weight);
  margin-bottom: 5px;
}

.step p {
  margin: 0;
  line-height: 1.5;
}

.step a {
  color: var(--steps--text-color);
}

.step img {
  margin-right: 7px;
  max-width: var(--steps--icon-width);
  max-height: var(--steps--icon-width);
}

.block-messages-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 775px;
  margin: auto;
  padding: 0 20px;
  gap: 16px;
}

.block-message {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: solid 1px #3b3b3a33;
  width: 375px;
  min-height: 70px;
  font-size: 14px;
}

.block-message p {
  color: #191919;
  margin: 0;
}

.wifi-image,
.vpn-image {
  margin-left: 0;
  margin-right: 16px;
  min-width: 41px;
}

@media (max-width: 599px) {
  .steps-wrapper {
    padding-bottom: var(--steps--padding-bottom--sm);
  }

  .steps {
    flex-direction: column;
    align-items: center;
    max-width: 345px;
  }

  .step {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 55px;
  }

  .step:last-child {
    margin-bottom: 0;
  }

  .step .text {
    text-align: left;
  }

  .step h3 {
    margin-top: 0;
  }

  .block-messages-wrapper {
    flex-direction: column;
    max-width: 345px;
    gap: 17px;
  }

  .block-message {
    max-width: calc(100% - 40px);
  }

  .wifi-image,
  .vpn-image {
    margin-left: 8px;
    margin-right: 26px;
  }
}