.diov{
    background-color: var(--main-color);
    padding: 0 80px 0px 80px;
}

.diov__holder{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width:100%;
}

.btn.btn__secondary.diov__active{
    background: linear-gradient(90deg, #FFA201 0%, #FFD489 100%);
    padding: 10px 16px 10px 16px;
    border-radius: 1000em;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 700;
    font-family: sans-serif;
    appearance: unset; {# so that .hs-button takes the style from above #}
    transition: .3s;
}

@media(max-width: 768px){
    .diov__holder .btn.btn__secondary{
        width: max-content;
    }

    .diov{
        padding: unset;
    }
}