/*----------------------------------
  SECTION TITLE 
  -----------------------------------*/
  .maha-process-wrap1 .section-title-wrap {
    position: relative;
    margin-bottom: 40px;
  }
  
  .maha-process-wrap1 .section-title-wrap .section-title {
    display: inline-block;
    position: relative;
    margin: 5px 0 40px;
    text-transform: capitalize;
    line-height: 1.4;
    font-size: calc(1.525rem + 3.3vw);
  }
  
  
  .maha-process-wrap1 .section-title-wrap p {
    font-family: var(--font-family);
  }
  
  @media (min-width: 1200px) {
    .maha-process-wrap1 .section-title-wrap .section-title {
      font-size: 4rem;
    }
  }
  
  .maha-process-wrap1 .section-title-wrap .section-title::before,
  .section-title-wrap .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 8px;
    border-radius: 4px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    background-color: var(--color-primary);
    -webkit-animation: animate 6s linear infinite;
    animation: animate 6s linear infinite;
  }
  
  .maha-process-wrap1 .section-title-wrap .section-title::before {
    right: 50%;
    margin-right: 4px;
  }
  
  .maha-process-wrap1 .section-title-wrap .section-title::after {
    left: 50%;
    margin-left: 4px;
  }
  
  .maha-process-wrap1 .section-title-wrap p {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 1200px;
  }
  
  @-webkit-keyframes animate {
    0% {
      width: 20px;
    }
  
    25% {
      width: 50px;
    }
  
    50% {
      width: 50px;
    }
  
    75% {
      width: 100px;
    }
  
    100% {
      width: 100px;
    }
  }
  
  @keyframes animate {
    0% {
      width: 20px;
    }
  
    25% {
      width: 50px;
    }
  
    50% {
      width: 50px;
    }
  
    75% {
      width: 100px;
    }
  
    100% {
      width: 100px;
    }
  }
  
  @-webkit-keyframes animate {
    0% {
      width: 20px;
    }
  
    25% {
      width: 50px;
    }
  
    50% {
      width: 50px;
    }
  
    75% {
      width: 100px;
    }
  
    100% {
      width: 100px;
    }
  }
  
  @keyframes animate {
    0% {
      width: 20px;
    }
  
    25% {
      width: 50px;
    }
  
    50% {
      width: 50px;
    }
  
    75% {
      width: 100px;
    }
  
    100% {
      width: 100px;
    }
  }
  
  /*------------------------------
    WORK PROCESS
    ------------------------------*/
  .maha-process-wrap1 {
    position: relative;
    overflow: hidden;
    /*padding-top: 120px;*/
    padding-bottom: 30px;
  }
  
  @media (min-width: 1200px) {
    .maha-process-wrap1 {
      /*padding-top: 100px;*/
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .maha-process-wrap1 {
      padding-top: 80px;
    }
  }
  @media (max-width: 991px) {
    .maha-process-wrap1 {
      padding-top: 50px;
    }
  }
  
  .maha-process-wrap1 .process-content {
    padding-top: 50px;
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content {
      padding-top: 50px;
    }
  }
  
  .maha-process-wrap1 .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-wrap1 .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;
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content .process-list {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
    }
  }
  
  .maha-process-wrap1 .process-content .process-list .process {
    list-style: none;
    margin-right: 0;
    text-align: center;
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content .process-list .process {
      margin-right: 80px;
    }
  }
  
  .maha-process-wrap1 .process-content .process-list .process:last-child {
    margin-right: 0px;
  }
  
  .maha-process-wrap1 .process-content .process-list .process:nth-child(2n) {
    margin-top: 0;
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content .process-list .process:nth-child(2n) {
      margin-top: -125px;
    }
  }
  
  .maha-process-wrap1 .process-content .process-list .process .process-circle {
    position: relative;
    display: inline-block;
    width: 140px;
    height: 140px;
    background-color: var(--color-white);
    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-wrap1 .process-content .process-list .process .process-circle {
      width: 140px;
      height: 140px;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content .process-list .process .process-circle {
      width: 100px;
      height: 100px;
    }
  }
  
  .maha-process-wrap1 .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-wrap1 .process-content .process-list .process .process-circle:hover {
    border-color: var(--color-primary);
  }
  
  .maha-process-wrap1 .process-content .process-list .process .process-circle:hover span {
    color: var(--color-primary);
  }
  
  .maha-process-wrap1 .process-content .process-list .process:nth-child(2n) .process-circle .zigzax-line {
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    top: 65%;
    left: -90%;
  }
  
  .maha-process-wrap1 .process-content .process-list .process:first-child .process-circle .zigzax-line {
    display: none;
  }
  
  .maha-process-wrap1 .process-content .process-list .process .zigzax-line {
    content: "";
    display: none;
    position: absolute;
    top: 10%;
    left: -95%;
    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: 992px) {
    .maha-process-wrap1 .process-content .process-list .process .zigzax-line {
      display: block;
    }
  }
  
  .maha-process-wrap1 .process-content .process-list .process .info {
    position: relative;
    padding-top: 25px;
    text-align: center;
  }
  
  .maha-process-wrap1 .process-content .process-list .process .info .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content .process-list .process .info .title {
      font-size: 18px;
    }
  }
  
  @media only screen and (min-width: 1200px) {
    .maha-process-wrap1 .process-content .process-list .process .info .title {
      font-size: 22px;
    }
  }
  
  .maha-process-wrap1 .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;
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content .process-list .process .info p {
      display: block;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .maha-process-wrap1 .process-content .process-list .process .info p {
      position: absolute;
      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-wrap1 .process-content .process-list .process .info p {
      font-size: 18px;
      width: 200px;
    }
  }
  
  .maha-process-wrap1 .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-wrap1 .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-wrap1 .process-content .process-list .process:hover .process-circle span {
    color: var(--color-primary);
  }
  
  .maha-process-wrap1 .process-content .process-list .process:hover .process-circle {
    border-color: var(--color-primary);
  }
  
  .maha-process-wrap1 .process-content .process-list .process:hover .spin {
    border: 0;
  }
  
  .maha-process-wrap1 .process-content .process-list .process:hover .spin::before {
    border-bottom-color: var(--color-second);
    border-right-color: var(--color-second);
    border-top-color: var(--color-second);
    -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-wrap1 .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-wrap1 .spin::before,
  .maha-process-wrap1 .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-wrap1 .spin::before {
    border: 6px solid transparent;
    z-index: 20;
  }
  
  .maha-process-wrap1 .spin::after {
    border: 0 solid transparent;
  }
  
  .maha-process-wrap1 .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-wrap1 .circle::before,
  .maha-process-wrap1 .circle::after {
    border-radius: 100%;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
  }
  
  
  
  @media(max-width:768px){
  .maha-process-wrap1 .process-content .process-list .process .info .title {font-size: 18px;}
  .maha-process-wrap1 .process-content .process-list .process .process-circle {width: 80px;height: 80px;}
  .maha-process-wrap1 .process-content .process-list .process .process-circle span {font-size: 25px;}
}

@media screen and (max-width: 1650px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 46px;
  }
}

@media screen and (max-width: 1500px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 44px;
  }
}

@media screen and (max-width: 1441px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 42px;
  }
}

@media screen and (max-width: 1367px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1281px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 1171px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 992px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 992px) {
  .maha-process-wrap1 .process-content .process-list .process {
   width: 33.33%;
  }
  .maha-process-wrap1 .process-content .process-list .process .info .title {
    font-size: 17px;
  }

  .maha-process-wrap1 .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: 30px;
    font-family: var(--title-font-family);
    font-weight: 600;
  }

  .maha-process-wrap1 .process-content .process-list {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
  }

  .maha-process-wrap1 .section-title-wrap p {
      font-size: 16px;
  }
  .maha-process-wrap1 .process-content {
    padding-top: 0px;
  }

  .maha-process-wrap1 .process-content .process-list .process .process-circle {
      position: relative;
      display: inline-block;
      width: 100px;
      height: 100px;
  }
  
}


@media screen and (max-width: 768px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 32px;
  }
}



@media screen and (max-width: 600px) {
  .maha-process-wrap1 .section-title-wrap .section-title {
    font-size: 24px;
  }
  .maha-process-wrap1 .process-content .process-list .process {
   width: 50%;
  }
  .maha-process-wrap1 em {
    font-size: 15px;
    color: var(--color-primary);
    margin: 0 0 15px;
    position: relative;
    padding: 0 50px 0;
  }
  .maha-process-wrap1 .section-title-wrap p {
      font-size: 15px;
  }
}

