.free-stuff-block{
    color: var(--main-text-color1);
    padding-bottom:var(--text-margin);
}
.free-stuff-block .section-title{font-weight: 500;line-height:1.1;}
.free-stuff-block .section-description{
    font-size:var(--text-size-desc);
}
.section-subtitle{
    font-size:var(--text-size-desc);
    font-weight:var(--font-weight-desc);
    color:#b7ff6a;
    margin-bottom:var(--text-margin);

}

.free-stuff-btn{
    display:flex;
    justify-content: flex-start;
    margin-top:11%;
    margin-bottom: 18%;
}

.a3-pill-btn{
    --btn-accent:#b7ff6a;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:min(100%);
    min-height:56px;
    padding: 6% 4%;
    border-radius: 80px;
    border: 4px solid var(--btn-accent);
    color:var(--btn-accent);
    background: linear-gradient(360deg, #000000, #000000);
    font-weight:600;
    font-size:var(--text-size-desc);
    text-decoration:none;
    transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.a3-pill-btn:hover{
    box-shadow:0 0 0 3px
    color-mix(in oklab,var(--btn-accent) 22%, transparent);
}
.a3-pill-btn:active{
    transform:translateY(1px)
}
.a3-pill-btn:focus-visible{
    outline:0;
    box-shadow:0 0 0 3px color-mix(in oklab,var(--btn-accent) 40%, transparent)}

@media(min-width:1024px){
    .free-stuff-block{
        color: var(--main-text-color1);
        margin-bottom: var(--text-margin);
        padding: 5%;
        border: 4px solid #6c7961;
        border-radius: 80px;
        width: 55%;
        margin-right: auto;
        margin-left: auto;
        margin-top: 6%;
    }
    .free-stuff-block .section-title{font-weight: 500;line-height:1.1;}
    .free-stuff-block .section-description{
        font-size: 2rem;
        width: 100%;
    }
    .section-subtitle{
        font-size: 2rem;
        font-weight:var(--font-weight-desc);
        color:#b7ff6a;
        margin-bottom: 2%;
    }

    .free-stuff-btn{
        display:flex;
        justify-content: flex-start;
        margin-top: 5%;
        margin-bottom: 1%;
    }

    .a3-pill-btn{
        --btn-accent:#b7ff6a;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        width: 100%;
        min-height:56px;
        padding: 4% 4%;
        border-radius: 40px;
        border: 4px solid var(--btn-accent);
        color:var(--btn-accent);
        font-weight:600;
        font-size: 2rem;
        text-decoration:none;
        background: black;
        transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .4s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1), font-size .4s cubic-bezier(0.4, 0, 0.2, 1), background .4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .a3-pill-btn:hover{
        color: #0e1b00;
        transform: scale(1.1);
        background: #9eff35;
        border-color: rgb(188 255 122);
    }
    .a3-pill-btn:active{
        transform:translateY(1px)
    }
    .a3-pill-btn:focus-visible{
        outline:0;
        box-shadow:0 0 0 3px color-mix(in oklab,var(--btn-accent) 40%, transparent)}

}

