.guide-section .process__timeline::before{
    height: 85%;
}
.process__row {
    --bs-gutter-x: 87px;
}
.process__content {
    position: sticky;
    top: 100px;
}
.process__content .process__image {
    border-radius: 16px;
   overflow: hidden;
}
.process__timeline .process__item:nth-child(1) .process__step {
    top: 0;
}
.process__timeline {
  position: relative;
  padding-left: 80px;
}

.process__timeline .process__item {
  display: flex;
  gap: 20px;
  margin-bottom:32px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 16px;
  position: relative;
}

.process__timeline .process__step {
    width: 49px;
    height: 49px;
    background: #2B2B2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    left: -84px;
    top: -10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    color: #F7F8F866;
}
.process__timeline .process__text{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #8A8F98;
    margin-bottom: 0;

}
.process__timeline .process__info {
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.process__timeline .process__info img {
    margin-bottom: 16px;
}
.process__heading{
    margin-bottom: 8px;
    color: #F7F8F8E5;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
}

.process__item.active {
  opacity: 1;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}
.process__item:hover {
  opacity: 1;
}

/* new */
.process__progress {
    position: absolute;
    left: 22px;
    top: 10px;
    width: 2px;
    height: 0;
    background: #fff;
    z-index: 1;
    transition: height 0.4s ease;
}
.process__timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.1);
    height: 88%;
}
.process__step {
    position: absolute;
    left: -56px;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: #2B2B2B;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #aaa;
    font-weight: 600;
}
   
.process__item.active {
    opacity: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
}
.process__item.completed .process__step {
    background: #Fff;
    color: #000;
}
.process__item.active .process__step {
    background: #fff;
    color: #000;
}
a{
color: var(--color-text-primary);
text-decoration: none;
}
@media (max-width: 1399px) {
      .process__row .col-lg-6{
        width: 48%;
        --bs-gutter-x: 0;
    }
    .process__row{
        gap:40px;
        width: 100%;
        margin: 0 auto;
    }  
}
@media screen and (max-width: 1299px) {
     .process__row{
        gap:30px;      
    }
}
@media (max-width: 991px) {
    .process__row{
        flex-direction: column;
    }
    .process__row {   
        gap: 32px;
        width: 100%;
        margin: 0 auto  ;
    }
    .process__row .col-lg-6{
        width: 98%;
    }
    .process__timeline .process__step {
        width: 34px;
        height: 34px;     
        font-size: 14px;
        line-height: 21px;  
        position: relative;  
        left: 0;
        top:0;
    }
    .process__timeline::before{
       display: none;
    }
    .process__timeline .process__item{
        flex-wrap: wrap;
        border: 1px solid #23252A; 
    }
    .process__timeline {
        padding-left: 0;
    }
    
    .process__timeline .process__info img {
        width: 22px;
    }
    .process__heading{
        font-size: 16px;
        line-height: 24px;
    }
    .process__timeline .process__text{
        font-size: 14px;
        line-height: 21px;
    }   
    .process__timeline .process__info{
        position: relative;
    }
    .process__info img {
        position: absolute;
        right: 13px;
        top: -50px;
    }
    .process br{
        display: none;
    }
}