/* 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; }
    }
*/
.process {
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process {
    padding: 5.333vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .process {
    padding: 40px 0;
  }
}
.process .ln-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.process .ln-row .item:first-child {
  width: 43%;
}
@media only screen and (max-width: 991px) {
  .process .ln-row .item:first-child {
    width: 100%;
  }
}
.process .ln-row .item:last-child {
  width: 57%;
}
@media only screen and (max-width: 991px) {
  .process .ln-row .item:last-child {
    width: 100%;
  }
}
.process__header {
  position: sticky;
  top: 120px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__header {
    top: 8vw;
  }
}
@media only screen and (max-width: 991px) {
  .process__header {
    margin-bottom: 40px;
  }
}
.process__header .ln-subtitle {
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__header .ln-subtitle {
    margin-top: 1.333vw;
  }
}
.process__content {
  flex: 1;
  display: flex;
  overflow: hidden;
  gap: 60px;
  padding-left: 50px;
  margin-left: -20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content {
    gap: 4vw;
    padding-left: 3.333vw;
    margin-left: -1.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .process__content {
    gap: 25px;
    padding-left: 16px;
    margin-left: 0;
  }
}
.process__content .line-wrap {
  position: relative;
}
.process__content .line-wrap .default-line {
  border: 1px dashed #e4e4e4;
  height: 100% !important;
  display: inline-block;
}
.process__content .line-wrap .draw-line {
  height: 0;
  position: absolute;
  left: 0px;
  border: 1px solid #c0d72f;
  display: inline-block;
}
.process__content .content-boxes ul {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  counter-reset: process-counter;
  gap: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content .content-boxes ul {
    gap: 1.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .process__content .content-boxes ul {
    gap: 15px;
  }
}
.process__content .content-boxes ul li {
  list-style-type: none;
  position: relative;
  border: 1px solid #888888;
  transition: 0.3s all;
  padding: 30px;
  border-radius: 24px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content .content-boxes ul li {
    padding: 2vw;
    border-radius: 1.6vw;
  }
}
@media only screen and (max-width: 767px) {
  .process__content .content-boxes ul li {
    padding: 20px;
    border-radius: 12px;
  }
}
.process__content .content-boxes ul li:first-child::after {
  position: absolute;
  content: " ";
  background-color: #fff;
  top: -1px;
  left: -66px;
  width: 6px;
  height: calc(50% - 16px);
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content .content-boxes ul li:first-child::after {
    left: -4.4vw;
    width: 0.4vw;
    height: calc(50% - 1.067vw);
  }
}
@media only screen and (max-width: 767px) {
  .process__content .content-boxes ul li:first-child::after {
    left: -29px;
  }
}
.process__content .content-boxes ul li:last-child::after {
  position: absolute;
  content: " ";
  background-color: #fff;
  bottom: -1px;
  left: -66px;
  width: 6px;
  height: calc(50% - 16px);
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content .content-boxes ul li:last-child::after {
    left: -4.4vw;
    width: 0.4vw;
    height: calc(50% - 1.067vw);
  }
}
@media only screen and (max-width: 767px) {
  .process__content .content-boxes ul li:last-child::after {
    left: -29px;
  }
}
.process__content .content-boxes ul li:before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #666;
  transition: all 0.4s ease-in-out;
  border: 1px dashed #000;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1;
  font-size: 16px;
  left: -80px;
  width: 34px;
  height: 34px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content .content-boxes ul li:before {
    font-size: 1.067vw;
    left: -5.333vw;
    width: 2.267vw;
    height: 2.267vw;
  }
}
@media only screen and (max-width: 767px) {
  .process__content .content-boxes ul li:before {
    left: -44px;
  }
}
.process__content .content-boxes ul li.active {
  border-color: #c0d72f;
}
.process__content .content-boxes ul li.active:before {
  background-color: #c0d72f;
  border-color: #c0d72f;
  transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
  color: #fff;
}
.process__content .content-boxes ul li .box-title {
  line-height: 1.5;
  font-size: 28px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content .content-boxes ul li .box-title {
    font-size: 1.867vw;
  }
}
@media only screen and (max-width: 767px) {
  .process__content .content-boxes ul li .box-title {
    font-size: 22px;
  }
}
.process__content .content-boxes ul li p {
  line-height: 1.5;
  font-size: 18px;
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .process__content .content-boxes ul li p {
    font-size: 1.2vw;
    margin-top: 1.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .process__content .content-boxes ul li p {
    font-size: 16px;
    margin-top: 10px;
  }
}