.feature-section .container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 80px;
}
/* .feature-section-description{
    margin-top:10px;
} */
.feature-section .feature-left {
  width: 40%;
}
.feature-section-btn{
width: fit-content;
}
.feature-section .feature-left {
  width: 60%;
  position: sticky;
  top: 120px;
  height: fit-content;
	gap: 20px;
    display: grid;
}

.feature-section .feature-right {
  width: 50%;
  position: relative;
  padding-right: 50px;
}

.feature-section .timeline {
  position: absolute;
  right: 20px;
  width: 4px;
  background: #ddd;
	top: 0% !important;
	height: 100% !important;
}

.feature-section .timeline-progress {
  position: absolute;
  right: 20px;
  width: 4px;
  background: #FCCF17;
}

.feature-section .feature-card {
  height: 120px;
  margin-bottom: 20px;
  border-radius: 16px;
width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  font-size: 18px;
  position: sticky;
  top: 120px;
  background: #fff;
  border: 1px solid #00B4A7;

  position: sticky;
  top: 90px;
  background: #fff;
 
  transition: 0.35s;
	
	 
font-size: 18px;
line-height: 26px;
color: #0e0e55;
font-weight: 600;
}
.feature-section .card-img{
	width: 25%;
}
.feature-section .card-content{
	width: 75%;
	font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 500;
}
.feature-section .card-img img {
  width: 90px;
}
.feature-section .feature-card.deactive {
  background: #eaeaea;

  border: none;
opacity: 0.8; 
	color: #262626;
}

.feature-section .feature-card.deactive img
{
	  filter: grayscale(1);
}

@media (max-width: 992px) {

    .feature-section .container {
        gap: 0px;
        padding: 0 20px;
    }

    .feature-section .feature-card {
        font-size: 16px;
    }

    /* HIDE TIMELINE */
    .feature-section .timeline,
    .feature-section .timeline-progress {
        display: none;
    }

    /* FULL WIDTH */
    .feature-section .feature-right {
        padding-right: 0;
    }

    /* REMOVE STICKY CARD */
    .feature-section .feature-card {
        position: relative;
        top: auto;
    }

    /* REMOVE DEACTIVE STYLE */
    .feature-section .feature-card.deactive {
        background: #fff;
        border: 1px solid #00B4A7;
        opacity: 1;
        color: #0e0e55;
    }

    .feature-section .feature-card.deactive img {
        filter: grayscale(0);
    }

}


@media (max-width:768px) {

    .feature-section .container {
        flex-direction: column;
    }

    .feature-section .feature-left {
        width: 100%;
        position: relative;
        top: auto;
        margin-bottom: 40px;
    }

    .feature-section .feature-right {
        width: 100%;
    }

    .feature-section .feature-card {
        height: auto;
    }

}

@media (max-width: 576px) {
    .feature-section .card-content {
        font-size: 0.85rem;
        line-height: 1.4rem;
    }
}