.contact-block {
    .form-wrap {
        max-width: 540px;
        margin: 0 auto;

        h2 {
            text-transform: uppercase;

            @include breakpoint(xl) {
                margin-bottom: 42px;
            }
        }
    }

    .gform_wrapper {
        form {
            overflow: hidden;
            @include breakpoint(lg) {
            }
        }

        .gform_body {
            .gform_fields {
                .gfield {
                    margin-bottom: 24px;
                }
            }
        }

        .gform_footer {
            position: relative;
            float: right;
            // text-align: right;
            max-width: 215px;

            @include breakpoint(lg) {
                margin-right: 9px;
                margin-bottom: 9px;
            }

            &:hover {
                &:before {
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
            }

            &:before {
                content: '';
                position: absolute;
                top: 9px;
                left: 25px;
                right: -9px;
                bottom: -9px;
                border: 1px solid $primary;
                transition: 0.3s ease;
                display: none;

                @include breakpoint(lg) {
                    display: block;
                }
                // max-width: 215px;
            }

            input[type='submit'] {
                font: italic 600 18px/1.3334 $font-family-secondary;
                // width: 100%;
                letter-spacing: 0.11em;
                padding: 16px;
                position: relative;
                display: block;
                min-width: 215px;
            }
        }
    }
}
