.banda_timeline {
    background-color: #f5f0e4;
}
.banda_timeline .line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(201, 168, 76, .2);
    transform: translateX(-50%);
}

.banda_timeline .timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 1rem !important;
    height: 1rem;
    padding: 0 !important;
    border-radius: 50%;
    background-color: #c9a84c;
    outline: 4px solid #f5f0e4;
}

.banda_timeline .step_number {
    font-size: 3.75rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .2);
    line-height: 1;
}

.banda_timeline .step_title {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;

}

.banda_timeline .step_desc {
    color: #333;
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 300;
    text-wrap: pretty;
}

.banda_timeline .step_meta {
    color: #c9a84c;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.banda_timeline .img-card {
    aspect-ratio: 4/5;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    transition: transform .7s ease;
}

.banda_timeline .img-card:hover {
    transform: rotate(0deg) !important;
}

.banda_timeline .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banda_timeline .rotate-cw {
    transform: rotate(2deg);
}

.banda_timeline .rotate-ccw {
    transform: rotate(-2deg);
}