/* MIXINS */
.steps {
  display: flex;
  flex-direction: row;
  gap: 95px;
  margin-bottom: 20px !important;
}
.steps-left {
  flex-basis: 42%;
}
.steps-right {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width:1023px) {
  .steps {
    width: 100% !important;
    flex-direction: column;
    gap: 45px;
  }
  .steps-left {
    flex-basis: 50%;
  }
  .steps-right {
    flex-basis: 50%;
    margin-right: 20px;
    margin-left: 30px;
  }
}
@media (max-width:991px) {
  .steps-left {
    flex-basis: 100%;
  }
  .steps-right {
    flex-basis: 100%;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width:767px) {
  .steps-right {
    margin-right: 0;
    margin-left: 10px;
  }
}
