.vertical-steps-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.vertical-steps-wrapper::before {
    content: '';
    position: absolute;
    left: 105px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E6A519;
}

.step-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: #1B2473;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
    z-index: 2;
}

.step-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.step-content {
    padding-top: 4px;
}

.step-small {
    font-size: 15px;
    text-transform: uppercase;
    color: #E6A519;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}
.step-small b{
    font-weight:500;
}

.step-content h3 {
    font-size: 25px;
    margin: 0 0 10px;
    color: #1B2473;
}

.step-content p {
    color: #353535;
    font-size: 14px;
    line-height: 1.7;
}

.step-content ul {
    margin-top: 10px;
    padding-left: 18px;
	margin-bottom:0
}

.step-content ul li {
    margin-bottom: 6px;
    color: #353535;
}

/* Mobile */
@media (max-width: 768px) {
    .vertical-steps-wrapper {
        padding-left: 0;
    }
    .step-content h3 {
        font-size: 22px;
    }
	.vertical-steps-wrapper::before{
		left:30px
	}
	.step-icon{
		    width: 60px;
    height: 60px;
		margin-right:15px;
	}
	.step-icon img{
		width:35px
	}
}
