.text {
  color: #A5A5A5;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.steps {
  justify-content: space-between;
  font-family: "Saira Condensed", sans-serif;
}
@media only screen and (max-width: 767px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
}
.steps .step {
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 320px;
}
@media only screen and (max-width: 1023px) {
  .steps .step {
    width: 32%;
  }
}
@media only screen and (max-width: 767px) {
  .steps .step {
    width: 100%;
    max-width: 345px;
    flex-direction: column;
  }
}
.steps .step .row {
  justify-content: space-between;
}
.steps .step .numb {
  font-size: 42px;
  letter-spacing: 2.1px;
  color: #1CA854;
  font-weight: 900;
}
.steps .step .progress-container {
  width: 284px;
  height: 8px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.steps .step .progress-container:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0.25;
  background: transparent linear-gradient(91deg, #2D5947 0%, #1CA854 63.5%);
}
@media only screen and (max-width: 1023px) {
  .steps .step .progress-container {
    width: 90%;
    max-width: 309px;
  }
}
@media only screen and (max-width: 767px) {
  .steps .step .progress-container {
    width: 88%;
    max-width: 309px;
  }
}
.steps .step .progress-container .progress-wrapper {
  border-radius: 5px;
  overflow: hidden;
}
.steps .step .progress-container .progress-wrapper.p-1 {
  width: 33%;
}
.steps .step .progress-container .progress-wrapper.p-2 {
  width: 66%;
}
.steps .step .progress-container .progress-wrapper.p-3 {
  width: 100%;
}
.steps .step .progress-container .progress-wrapper .progress-line {
  border-radius: 5px;
  height: 8px;
  background: transparent linear-gradient(91deg, #2D5947 0%, #1CA854 63.5%);
  width: 100%;
}
.steps .step .title {
  font-size: 21px;
  color: #1CA854;
  letter-spacing: 1.05px;
  font-weight: 700;
  line-height: 1.2;
}
.steps .step .description {
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.7px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
}
.steps .step .description .highlight {
  font-weight: 700;
  margin: 0 3px;
}
.steps .step .description .bonus-code {
  height: 32px;
  padding: 0 20px;
  border-radius: 100px;
  background-color: #3F0826;
  margin: auto 0 0 15px;
  font-family: "Saira Condensed", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #FFC600;
  font-size: 12px;
  letter-spacing: 0.6px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  position: relative;
}
.steps .step .description .bonus-code .copy-icon {
  height: 16px;
  margin-left: 14px;
}
.steps .step .description .bonus-code .tool-tip {
  background: #3F0826;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  font-size: 12px;
  color: #ffffff;
}

.mb-4 {
  margin-bottom: 4px;
}/*# sourceMappingURL=steps.css.map */