h-step{
    display: block;
    line-height: 1.1;
}
h-step .h-step-body{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

h-step .h-step-title{
    color: #010101;
    font-size: 58px;
    font-weight: 500;
    font-family: var(--font-akzidenz-grotesk-super);
    margin-bottom: 80px;
    text-align: center;
}

h-step .h-step-item{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
h-step .h-step-item__header{
    position: relative;
}

h-step .h-step-item__header-svg{
    text-align: center;
}
h-step .h-step-item__header-svg svg,
h-step .h-step-item__header-svg img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
}
h-step .h-step-item__header-title{
    color: #010101;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--h-step-item-title-font-size, 50px);
    font-weight: 500;
    font-family: var(--font-akzidenz-grotesk-super);
    text-align: center;
}

h-step .h-step-item__divider{
    display: flex;
    justify-content: center;
}
h-step .h-step-item__divider span{
    width: 88px;
    height: 6px;
    background-color: #EE8201;
    display: block;
}
h-step .h-step-item__content{
    color: #323232;
    text-align: center;
    font-size: var(--h-step-item-content-font-size, 26px);
    font-weight: 500;
    font-family: var(--font-gotham-medium);
}

@media(max-width:959px){
    h-step .h-step-body{
        gap: 5.3333vw;
        grid: auto / auto-flow 60%;
        overflow: auto;
    }
    h-step .h-step-title{
        font-size: 6.6667vw;
        margin-bottom: 5.8667vw;
    }
    h-step .h-step-item__header-title{
        font-size: var(--h-step-item-title-font-size-mobile, 24px);
    }
    h-step .h-step-item__content{
        font-size: var(--h-step-item-content-font-size-mobile, 18px);
    }
    h-step .h-step-item{
        gap: 20px;
    }
    h-step .h-step-item__divider span{
        width: 36px;
        height: 3px;
    }
}
