.landing-steps {
  position: relative;
}

.landing-steps .landing-steps__content {
  display: flex;
  flex-direction: column;
  gap: 45px;
  justify-content: center;
  align-items: center;
}

.landing-steps .landing-steps__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing-steps .landing-steps__title {
  color: #5691c8;
  text-align: center;
  font-family: "Geologica", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 137%;
  letter-spacing: -0.32px;
  margin: 0;
}

.landing-steps .landing-steps__subtitle {
  color: #253542;
  text-align: center;
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 63%;
  letter-spacing: -0.18px;
  margin: 0;
}

.landing-steps .landing-steps__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
}

.landing-steps
  .landing-steps__steps.landing-steps__steps--odd
  .landing-steps__step-wrapper:first-child {
  grid-column: span 2;
}

.landing-steps .landing-steps__step-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-steps .landing-steps__step {
  display: inline-flex;
  padding: 20px 25px;
  align-items: center;
  gap: 35px;
  border-radius: 15px;
  border: 1px solid #def2ff;
  background: #fff;
  box-shadow:
    0 29px 8px 0 rgba(38, 103, 207, 0),
    0 18px 7px 0 rgba(38, 103, 207, 0.01),
    0 10px 6px 0 rgba(38, 103, 207, 0.03),
    0 5px 5px 0 rgba(38, 103, 207, 0.04),
    0 1px 3px 0 rgba(38, 103, 207, 0.05);
  max-width: 555px;
}

.landing-steps .landing-steps__step-content {
  display: flex;
  gap: 20px;
}

.landing-steps .landing-steps__step-number-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.landing-steps .landing-steps__step-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: none;
  background: #daedff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5691c8;
}

.landing-steps .landing-steps__step-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-steps .landing-steps__step-title {
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 128.023%;
  letter-spacing: 0.18px;
}

.landing-steps .landing-steps__step-description {
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 128.023%;
  letter-spacing: 0.14px;
}

.landing-steps .landing-steps__step-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.landing-steps .landing-steps__step-url {
  display: flex;
  padding: 12px 22px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: #5691c8;
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 128.023%;
  letter-spacing: 0.16px;
  text-decoration: none !important;
}

@media (width <= 768px) {
  .landing-steps .landing-steps__content {
    gap: 25px;
  }

  .landing-steps .landing-steps__header {
    gap: 4px;
  }

  .landing-steps .landing-steps__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 137%;
    letter-spacing: -0.24px;
  }

  .landing-steps .landing-steps__subtitle {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 63%;
    letter-spacing: -0.14px;
  }

  .landing-steps .landing-steps__steps {
    gap: 20px;
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
  }

  .landing-steps
    .landing-steps__steps.landing-steps__steps--odd
    .landing-steps__step-wrapper:first-child {
    grid-column: auto;
  }

  .landing-steps .landing-steps__step {
    max-width: 100%;
    width: 100%;
    padding: 20px 25px 20px 15px;
    gap: 15px;
    flex-direction: column;
  }

  .landing-steps .landing-steps__step-content {
    gap: 16px;
    width: 100%;
  }

  .landing-steps .landing-steps__step-info {
    gap: 8px;
  }

  .landing-steps .landing-steps__step-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 128.023%;
    letter-spacing: 0.16px;
  }

  .landing-steps .landing-steps__step-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 128.023%;
    letter-spacing: 0.14px;
  }

  .landing-steps .landing-steps__step-actions {
    width: 100%;
    justify-content: start;
  }

  .landing-steps .landing-steps__step-url {
    padding: 8px 12px;
    gap: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 128.023%;
    letter-spacing: 0.14px;
  }
}
