/*----------------------------------
  SECTION TITLE 
  -----------------------------------*/
.maha-process-wrap .section-title-wrap {
  position: relative;
  margin-bottom: 40px;
}


.maha-process-wrap .section-title-wrap p {
  font-family: var(--font-family);
}

/*------------------------------
  WORK PROCESS
  ------------------------------*/
.maha-process-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 150px;
}

@media (min-width: 1200px) {
  .maha-process-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .maha-process-wrap {
    padding-top: 80px;
        padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .maha-process-wrap {
    padding-top: 50px;
        padding-bottom: 50px;
  }
}

.maha-process-wrap .process-content {
  padding-top: 30px;
}

@media only screen and (min-width: 992px) {
  .maha-process-wrap .process-content {
    padding-top: 90px;
        padding-bottom: 90px;
  }
}

.maha-process-wrap .process-content-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: 20px;
}

.maha-process-wrap .process-content .process-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-orient: vertical;*/
  /*-webkit-box-direction: normal;*/
  /*-ms-flex-direction: column;*/
  /*flex-direction: column;*/
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

/*@media only screen and (min-width: 575px) {*/
/*  .maha-process-wrap .process-content .process-list {*/
/*    -webkit-box-orient: horizontal;*/
/*    -webkit-box-direction: normal;*/
/*    -ms-flex-direction: row;*/
/*    flex-direction: row;*/
/*  }*/
/*}*/

.maha-process-wrap .process-content .process-list .process {
  list-style: none;
  margin-right: 0;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .maha-process-wrap .process-content .process-list .process {
    margin-right: 80px;
  }
}

.maha-process-wrap .process-content .process-list .process:last-child {
  margin-right: 0px;
}

.maha-process-wrap .process-content .process-list .process:nth-child(2n) {
  margin-top: 0;
}

@media only screen and (min-width: 575px) {
  .maha-process-wrap .process-content .process-list .process:nth-child(2n) {
    margin-top: -125px;
  }
}

.maha-process-wrap .process-content .process-list .process .process-circle {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  background-color: #fff;
  border-radius: 100%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 8px solid #e6e9ee;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

@media only screen and (min-width: 1300px) {
  .maha-process-wrap .process-content .process-list .process .process-circle {
    width: 140px;
    height: 140px;
  }
}

@media only screen and (min-width: 992px) {
  .maha-process-wrap .process-content .process-list .process .process-circle {
    width: 100px;
    height: 100px;
  }
}

.maha-process-wrap .process-content .process-list .process .process-circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #2e4451;
  font-size: 44px;
  font-family: var(--title-font-family);
  font-weight: 600;
}

.maha-process-wrap .process-content .process-list .process .process-circle:hover {
  border-color: var(--color-primary);
}

.maha-process-wrap .process-content .process-list .process .process-circle:hover span {
  color: var(--color-primary);
}

.maha-process-wrap .process-content .process-list .process:nth-child(2n) .process-circle .zigzax-line {
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
  top: 65%;
  left: -110%;
}

.maha-process-wrap .process-content .process-list .process:first-child .process-circle .zigzax-line {
  display: none;
}

.maha-process-wrap .process-content .process-list .process .zigzax-line {
  content: "";
  display: none;
  position: absolute;
  top: 10%;
  left: -100%;
  width: 90%;
  height: 2px;
  z-index: -1;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-primary)), color-stop(50%, white));
  background-image: linear-gradient(to right, var(--color-primary) 50%, white 50%);
  background-position: top;
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

@media only screen and (min-width: 757px) {
  .maha-process-wrap .process-content .process-list .process .zigzax-line {
    display: block;
  }
}

.maha-process-wrap .process-content .process-list .process .info {
  position: relative;
  padding-top: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maha-process-wrap .process-content .process-list .process .info .title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.maha-process-wrap .process-content .process-list .process:hover .info .title {
  color: var(--color-primary);
}

@media only screen and (min-width: 992px) {
  .maha-process-wrap .process-content .process-list .process .info .title {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) {
  .maha-process-wrap .process-content .process-list .process .info .title {
    font-size: 22px;
  }
}

.maha-process-wrap .process-content .process-list .process .info p {
  display: inline-block;
  font-size: 20px;
  margin-left: 0;
  position: relative;
  width: 200px;
  font-family: var(--font-family);
  margin-bottom: 30px;
  display: none;
}

@media only screen and (min-width: 992px) {
  .maha-process-wrap .process-content .process-list .process .info p {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .maha-process-wrap .process-content .process-list .process .info p {
    position: absolute;
    top: 100%;
    display: none;
    font-size: 16px;
    /* margin-left: -25px; */
    width: 160px;
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@media only screen and (min-width: 1200px) {
  .maha-process-wrap .process-content .process-list .process .info p {
    font-size: 18px;
    width: 200px;
  }
}

.maha-process-wrap .process-content .process-list .process:hover .info P {
  display: inline-block;
  opacity: 1;
  filter: alpha(opacity=100);
}

@media only screen and (min-width: 992px) {
  .maha-process-wrap .process-content .process-list .process:hover .info P {
    display: block;
    -webkit-animation: slide-down 0.3s ease-out;
    animation: slide-down 0.3s ease-out;
  }
}

.maha-process-wrap .process-content .process-list .process:hover .process-circle span {
  color: var(--color-primary);
}

.maha-process-wrap .process-content .process-list .process:hover .process-circle {
  border-color: var(--color-primary);
}

.maha-process-wrap .process-content .process-list .process:hover .spin {
  border: 0;
}

.maha-process-wrap .process-content .process-list .process:hover .spin::before {
  border-bottom-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-top-color: var(--color-primary);
  border-left-color: var(--color-primary);
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.maha-process-wrap .process-content .process-list .process:hover .spin::after {
  border-left-width: 6px;
  border-right-width: 6px;
  border-top: 6px solid var(--color-second);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.maha-process-wrap .spin::before,
.maha-process-wrap .spin::after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: "";
}

.maha-process-wrap .spin::before {
  border: 6px solid transparent;
  z-index: 20;
}

.maha-process-wrap .spin::after {
  border: 0 solid transparent;
}

.maha-process-wrap .circle {
  border-radius: 100%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: none;
  box-shadow: none;
}

.maha-process-wrap .circle::before,
.maha-process-wrap .circle::after {
  border-radius: 100%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}


@media (max-width:992px) {
  .maha-process-wrap .process-content .process-list {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .maha-process-wrap .process-content .process-list .process {
    width: calc(100% /3);
    padding-top: 50px;
  }
  
  .maha-process-wrap .process-content .process-list .process:nth-child(2n) {
    margin-top: -50px;
  }
  
  .maha-process-wrap .process-content .process-list .process .zigzax-line {
    display: block;
  }
  
  .maha-process-wrap .process-content .process-list .process:nth-child(4) .zigzax-line {
    display: none;
  }
}

@media (max-width:575px) {
  .maha-process-wrap .process-content .process-list .process .process-circle span {
    font-size: 24px;
  }
  .maha-process-wrap .process-content .process-list .process .process-circle {
    width: 70px;
    height: 70px;
    border: 2px solid #e6e9ee;
  }
  .maha-process-wrap .process-content .process-list .process .info .title {
    font-size: 12px;
    min-height: max-content;
  }
  .maha-process-wrap .process-content .process-list .process .info p {
    width: 100%;
    font-size: 12px;
  }
  .maha-process-wrap .process-content .process-list .process .info {
    padding-top: 0;
  }
  .maha-process-wrap .process-content .process-list .process:nth-child(2n) {
    margin-top: -30px;
  }
}