﻿
@media only screen and (max-width: 650px) {
    .lg-vgrn-btn {
        background: #2c612c;
        color: #ffffff;
        text-decoration: none !important;
        font-family: "FSIndustrie-Bold";
        text-transform: uppercase;
        border-radius: 50px;
        padding: 16px 36px 15px;
        font-size: 1em;
        transition: 0.5s;
        white-space: normal;
        max-width: 100%;
        word-wrap: break-word;
        display: inline-block;
        text-align: center;
    }


        .lg-vgrn-btn:hover {
            background: #213B34;
            color: #ffffff;
        }
}

@media only screen and (min-width: 651px) {
    .lg-vgrn-btn {
        background: #2c612c;
        color: #ffffff;
        text-decoration: none !important;
        font-family: "FSIndustrie-Bold";
        text-transform: uppercase;
        border-radius: 50px;
        padding: 16px 36px 15px;
        font-size: 1em;
        transition: .5s;
        white-space: nowrap;
    }

        .lg-vgrn-btn:hover {
            background: #213B34;
            color: #ffffff;
            text-decoration: underline !important;
        }
}