.timeline-slider-wrapper {
    position: relative;
    padding: 40px 50px;
    overflow: hidden;
    background: transparent;
}
.home-section7:before {
	top: 49%;
}
.timeline-track {
    display: flex;
    transition: transform 0.5s ease;
}

.timeline-item {
    min-width: 26%;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
}

.timeline-top {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.timeline-circle {
    width: 185px;
    height: 185px;
    border: 8px solid #f26522;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-circle img {
	max-width: 130px;
    width: 100%;
    height: 100%;
    object-fit: none;
}

.timeline-line {
    width: 2px;
    height: 50px;
    background: #f26522;
    margin: auto;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #f26522;
    border-radius: 50%;
    margin: auto;
}

.timeline-content h2 {
	font-size: 35px;
	display: block;
	margin-bottom: 15px;
	font-weight: 700;
	color: #4B4F58;
}

.timeline-content h4 {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 600;
	color: #ea5e2f;
}

.timeline-content p {
    line-height: 1.7;
    font-size: 12px;
    width: 100%;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-nav {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: 0px solid #ddd;
    z-index: 10;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-prev {
    left: 10px;
}

.timeline-next {
    right: -10px;
}

@media(max-width: 991px) {
    .timeline-item {
        min-width: 50%;
    }
}

@media(max-width: 767px) {
    .timeline-item {
        min-width: 100%;
    }

    .timeline-circle {
        width: 140px;
        height: 140px;
    }

    .timeline-content h2 {
        font-size: 36px;
    }
}