/* variables for text */
/* Main Color Palet */
/*
Green Dark: #5bbd80, rgb(91 189 128)
Green light: #c0d72f, rgb(192 215 47)

*/
/* variables for bg */
/* variables for fonts */
/* ================================ Global Mixins =========================== */
/*
** Transition use **
    .foo {
        @include transition(all 0.35s ease-in-out);
    }
*/
/*
** Position use **
    .foo {
        @include position(both);
    }
*/
/*
**clearfix use **
    .foo {
        @include clearfix;
    }
*/
/*
** center-auto **
    .foo {
        @include center-auto;
    }
*/
/*
** placeholder use **
    input,
    textarea {
        @include input-placeholder {
            color: $grey;
        }
    }
*/
/*
** pseudo use **
    div::after {
        @include pseudo;
        top: -1rem; left: -1rem;
        width: 1rem; height: 1rem;
    }
*/
/*
** prefix use **
    div {
       @include css3-prefix(transform, scale3d(2.5, 2, 1.5));
    }
}*/
/* Animation use
**
    @include keyframes(fade-out) {
        0% { opacity: 1; }
        90% { opacity: 0; }
    }
*/
.steps {
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps {
    padding: 5.333vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .steps {
    padding: 40px 0;
  }
}
.steps__header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media only screen and (max-width: 991px) {
  .steps__header {
    text-align: center;
    flex-direction: column;
  }
}
.steps__btn {
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .steps__btn a {
    width: 100%;
    text-align: center;
  }
}
.steps__content .hire-process-steps {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: auto;
  gap: 24px;
  padding-top: 60px;
  padding-bottom: 10px;
  margin-top: 40px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps__content .hire-process-steps {
    gap: 1.6vw;
    padding-top: 4vw;
    padding-bottom: 0.667vw;
    margin-top: 2.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .steps__content .hire-process-steps {
    margin-top: 20px;
    padding-top: 50px;
    gap: 20px;
  }
}
.steps__content .hire-process-steps .hire-step {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #fefff9;
  border: 1px solid #c0d72f;
  max-width: calc(25% - 18px);
  padding: 0px 25px 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps__content .hire-process-steps .hire-step {
    max-width: calc(25% - 1.2vw);
    padding: 0vw 1.667vw 1.6vw;
    -webkit-border-radius: 1.6vw;
    -moz-border-radius: 1.6vw;
    -ms-border-radius: 1.6vw;
    border-radius: 1.6vw;
  }
}
@media only screen and (max-width: 991px) {
  .steps__content .hire-process-steps .hire-step {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .steps__content .hire-process-steps .hire-step {
    padding: 0px 15px 20px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    flex: 0 0 260px;
    max-width: 260px;
    min-width: 260px;
  }
}
.steps__content .hire-process-steps .hire-step:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  border: 1px dashed #c0d72f;
  border-radius: 50%;
  z-index: -1;
  top: -48px;
  height: 95px;
  width: 95px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps__content .hire-process-steps .hire-step:before {
    top: -3.2vw;
    height: 6.333vw;
    width: 6.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .steps__content .hire-process-steps .hire-step:before {
    top: -43px;
    height: 85px;
    width: 85px;
  }
}
.steps__content .hire-process-steps .hire-step .hire-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #f4fad8;
  border-radius: 50%;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.3019607843);
  height: 80px;
  width: 80px;
  margin: -40px auto 24px;
  border: 4px solid #fff;
  padding: 8px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps__content .hire-process-steps .hire-step .hire-icon {
    height: 5.333vw;
    width: 5.333vw;
    margin: -2.667vw auto 1.6vw;
    border: 0.267vw solid #fff;
    padding: 0.533vw;
  }
}
@media only screen and (max-width: 767px) {
  .steps__content .hire-process-steps .hire-step .hire-icon {
    height: 70px;
    width: 70px;
    margin: -37px auto 20px;
  }
}
.steps__content .hire-process-steps .hire-step .hire-icon img {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps__content .hire-process-steps .hire-step .hire-icon img {
    width: 3.333vw;
    height: 3.333vw;
  }
}
.steps__content .hire-process-steps .hire-step h3 {
  line-height: 1.2;
  font-size: 34px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps__content .hire-process-steps .hire-step h3 {
    font-size: 2.267vw;
  }
}
@media only screen and (max-width: 767px) {
  .steps__content .hire-process-steps .hire-step h3 {
    font-size: 26px;
  }
}
.steps__content .hire-process-steps .hire-step p {
  line-height: 1.5;
  margin-top: 20px;
  font-size: 18px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .steps__content .hire-process-steps .hire-step p {
    margin-top: 1.333vw;
    font-size: 1.2vw;
  }
}