.heading-2-btns {
    display: flex;
    flex-direction: column;
    gap:30px;
    margin-top:50px;
    margin-bottom:50px;
}
.heading-2-btns .heading {
    background: var(--heading-bg-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: inherit;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 126.667% */
    margin-bottom:0;
}

.heading-2-btns .wrapper {
    aspect-ratio: var(--bg-mobile-ratio);
    width:100%;
    background-image: var(--bg-mobile);
    background-size:cover;
    background-repeat: no-repeat;
    display:flex;
    flex-direction: column;
    justify-content: center;
}

.heading-2-btns .wrapper article {
    height:50%;
    display:flex;
    align-items: end;
    justify-content: center;
}

.heading-2-btns .wrapper a {
    background: linear-gradient(135deg, #3b8eff 0%, #1a5fe8 100%);
    padding: 14px 0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.1s ease;


    color: #FFF;
    text-align: center;

    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    width:190px;
    display: flex;
    justify-content: center;
    align-items: center;    
    margin-bottom:18%;
}

@media (min-width:768px) {
    .heading-2-btns .wrapper {
        aspect-ratio: var(--bg-desktop-ratio);
        background-image: var(--bg-desktop);
        flex-direction: row;
    }

    .heading-2-btns {
        margin-top:100px;
        margin-bottom:100px;
    }

    .heading-2-btns .wrapper article {
        align-items: flex-end;
        width: 100%;
        justify-content: center;
        height:100%;
    }

     .heading-2-btns .wrapper article a {
        margin-bottom:5%;
     }
}