.steps .step {
    display: flex;
    gap: 32px;
    /* align-items: center; */
}
.steps .step .step-label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    color: var(--theme-secondary);
    transition: color 0.4s ease-in-out;
    max-width: 161px;
    min-width: 161px;
    max-height: 100%;
    width: 100%;
    height: 186px;
}
.steps .step:not(:last-child) .step-label::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100px;
    height: 30px;
    background: #fff;
    z-index: -1;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.steps .step .step-label svg {
    position: absolute;
    top: 0;
    left: 0%;
    z-index: -1;
    fill: #EFEFEF;
    transition: all 0.4s ease-in-out;
}
.steps .step:hover svg {
    fill: var(--theme-color);
}
.steps .step:hover .step-label {
    color: #fff;
}
.steps .step .step-label-text {
    font-family: sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0;
}
.steps .step .step-label-number {
    font-family: var(--drivschol-heading-font, "Urbanist", sans-serif);
    display: block;
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.steps .step .step-text {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
@media only screen and (max-width:500px) {
    .steps .step .step-label {
        zoom: .5;
    }
}