.step-tab-section{
    background-color: rgba(var(--color-background));
}
step-tab .step-tab-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
    margin-bottom:50px;
    text-align: center;
}

step-tab .step-tab-block-title-grid{
    display: flex;
    gap:70px;
}

step-tab .step-block-title{
    color:rgb(var(--color-text));
    opacity: 0.6;
    cursor: pointer;
}
step-tab .step-block-title.active{
    opacity: 1;
}
step-tab .step-block-title.active::after{
    content: '';
    width: 100%;
    background-color: #000000;
    height: 1px;
    display: block;
}

step-tab .step-tab-slide-item{
    display: none;
}
step-tab .step-tab-slide-item.active{
    display: block;
}


step-slide .step-slide-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

step-slide .step-slide-image{
    aspect-ratio: var(--aspect-ratio);
    margin-bottom:30px;
    width: 100%;
}

step-slide .step-slide-tag{
    border-radius: 8px;
    border:1px solid rgba(0, 0, 0, 0.20);
    padding:2px 12px;
    margin-bottom:30px;
}

step-slide .step-slide-title{
    margin-bottom:15px;
}

step-slide .step-slide-content{
    max-width:500px;
    opacity: 0.6;
}

step-slide{
    --button-size:55px
}
step-slide .swiper-button::after{
    display: none;
}
step-slide .swiper-button{
    width:var(--button-size);
    height:var(--button-size);
    background-color: #fff;
    border-radius:5px;
    --svg-color:#000;
}
step-slide .swiper-button svg path{
    stroke:var(--svg-color);
}

step-slide .swiper-button:hover{
    background-color: #000;
    --svg-color:#fff;
}

@media(max-width:959px){
    step-tab .step-tab-block-title-grid{
        overflow-x: auto;
        scrollbar-width: none;
    }
    step-tab .step-block-title{
        flex: 0 0 auto;;
    }
}