.cta {
    position: relative;
    z-index: 4;
    overflow: hidden;
    padding: 20px 0;
}

.cta-disabled .cta {
    min-height: 320px;
}

.cta-disabled .cta__container {
    display: none;
}

.cta:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background-color: #E5E5E5;
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
}

.cta__container {
    background-color: #F7F7F7;
    padding: 35px 55px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 3px 3px 21px rgba(0,0,0, 0.2);
    position: relative;
}

.cta__item {
    width: 50%;
}

.cta__item:not(:last-child) {
    border-right: 3px solid #EBEBEB;
}

.cta__content {
    text-align: center;
    padding: 30px 66px;
}

.cta__content h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.cta__content p {
    font-size: 17px;
    margin-bottom: 25px;
}

.cta__content .ajax-loader {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.cta__content .form [type=submit] {
    margin-bottom: 10px;
}

.cta__content .invalid .wpcf7-response-output {
    margin-top: 40px;
}

/*
* Responsive
*/

@media (min-width: 1025px) {
    .cta__content .form {
        margin-bottom: -32px;
    }
}

@media (max-width: 1025px) {
    .cta-disabled .cta {
        min-height: 151px;
    }

    .cta__container {
        padding: 0;
    }
    
    .cta__item {
        width: 100%;
    }

    .cta__content {
        padding: 33px 67px;
    }

    .cta__item:not(:first-child) {
        border-right: 0;
        border-bottom: 3px solid #EBEBEB;
    }

    .cta__content h2 {
        font-weight: 500;
    }
}


@media (max-width: 600px) {
    .cta {
        margin-top: 0;
        padding: 0;
    }

    .cta .container {
        padding: 0;
    }

    .cta__button {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta__button .btn {
        margin-bottom: 10px;
    }

    .cta__content {
        padding: 37px 25px;
    }

    .cta__content h2 {
        font-size: 25px;
    }

    .cta__content p {
        font-size: 17px;
        letter-spacing: 0.03em;
    }

    .cta-disabled .cta {
        min-height: 125px;
    }
}