.animated-content-wrap {
    display: flex;
    text-align: center;
    justify-content: space-between;
}
.animated-content-info {
    flex: 0 0 350px;
    max-width: 350px;
}
.animated-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.bar-step span {
    background: #fff;
    height: 70px;
    width: 70px;
    border-radius: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 30px;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.animated-content-info.visible span,
.bar-step.visible span {
    background: #0e31bd;
    color: #fff;
}
.bar-step {
    flex: 0 0 350px;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 350px;
    position: relative;
    z-index: 1;
}
.bar-step-1::before{
    content: "";
    width: 50%;
    position: absolute;
    height: 5px;
    background: #fff;
    top: 32.5px;
    z-index: -1;
    left: 0;
}
.bar-step-3::before{
    content: "";
    width: 50%;
    position: absolute;
    height: 5px;
    background: #fff;
    top: 32.5px;
    z-index: -1;
    right: 0;
}
.animated-section {
    padding: 60px 0;
}
.animated-bar:after {
    content: "";
    width: 100%;
    position: absolute;
    height: 5px;
    background: #0e31bd;
    top: 32.5px;
    z-index: -1;
}
.animated-content-info h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0e31bd;
    margin-top: 10px;
}
.animated-content-info p{
    color: #000;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}
.animated-content-info {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.bar-step.visible span,
.animated-content-info.visible {
    opacity: 1;
}
.animated-content-info .bar-step{
    display: none;
}
@media(max-width: 1229px) {
    .animated-content-wrap {
        gap: 15px;
    }
    .bar-step,
    .animated-content-info {
        flex: 0 0 calc(33.334% - 8px);
        max-width: calc(33.334% - 8px);
    }
    .animated-content-info h3 {
        font-size: 28px;
        margin-bottom: 5px;
    }
}
@media(max-width: 767px) {
    .animated-bar {
        display: none;
    }
    .animated-content-wrap {
        gap: 30px;
        flex-direction: column;
    }
    .bar-step,
    .animated-content-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .bar-step{
        margin-bottom: 15px;
    }
    .animated-content-info img {
        width: 70px;
    }
    .bar-step span {
        height: 50px;
        width: 50px;
    }
    .animated-content-info p {
        font-size: 14px;
        line-height: 20px;
        max-width: 250px;
        margin: 0 auto;
    }
    .animated-content-info .bar-step{
        display: flex;
    }
}