.display-mobile {
    display: none;
}

@media screen and (max-width: 1200px) and (min-width: 641px) {
    .wrapper{
        width: 800px;
    }
}

@media screen and (max-width: 640px) {

    .display-mobile {
        display: block;
    }

    .wrapper{
        width: 100%;
        min-width: 320px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .form-frame .row {
        flex-direction: column;
    }

    .form-frame .row .col-50 {
        width: 100%;
    }

    .form-frame .row .col-50:nth-child(2n) {
        padding-top: 20px;
    }

    .col-50.submit-wrapper {
        text-align: center;
    }

    .bglines .line-1 {
        font-size: 24px;
    }


}