.form-section {
    padding: 100px 0;
}

.form-section__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-section .text-content {
    max-width: 460px;
}

.form-section .text-content .pre-heading {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.2px !important;
    margin-bottom: 20px;
}

.form-section .text-content .heading {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.64px !important;
    margin-bottom: 8px;
}

.form-section .text-content p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px !important;
}
.form-section .text-content p:last-child {
    margin-bottom: 0;
}

.form-section .form-content {
    max-width: 700px;
}

.form-section .form-content .wpcf7 .wpcf7-form-control-wrap {
    margin: 0;
}

.form-section .form-content form .form-row:nth-child(2),
.form-section .form-content form .form-row:nth-child(3) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-section .form-content form .form-row {
    margin-bottom: 20px;
}

.form-section .form-content form .form-row-input input,
.form-section .form-content form .form-row-textarea textarea {
    width: 100%;
    color: #60646C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #FFF;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
}

/* css */
.form-section .form-content .wpcf7 input::placeholder,
.form-section .form-content .wpcf7 textarea::placeholder {
    color: #60646C !important;
    opacity: 1 !important;
    font-style: normal;
}

/* WebKit */
.form-section .form-content .wpcf7 input::-webkit-input-placeholder,
.form-section .form-content .wpcf7 textarea::-webkit-input-placeholder {
    color: #60646C !important;
    opacity: 1 !important;
}

/* Firefox old */
.form-section .form-content .wpcf7 input:-moz-placeholder,
.form-section .form-content .wpcf7 textarea:-moz-placeholder,
.form-section .form-content .wpcf7 input::-moz-placeholder,
.form-section .form-content .wpcf7 textarea::-moz-placeholder {
    color: #60646C !important;
    opacity: 1 !important;
}

/* IE / Edge legacy */
.form-section .form-content .wpcf7 input:-ms-input-placeholder,
.form-section .form-content .wpcf7 textarea:-ms-input-placeholder {
    color: #60646C !important;
    opacity: 1 !important;
}

.form-section .form-content form .form-row-input input {
    height: 56px;
    padding: 0 20px;
}

.form-section .form-content form .form-row-textarea textarea {
    height: 112px;
    padding: 20px;
}

.form-section .form-content .wpcf7 .form-row-checkbox .wpcf7-list-item {
    color: #FFF;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 18px;
    letter-spacing: -0.18px !important;
}
.form-section .form-content .wpcf7 .form-row-checkbox .wpcf7-list-item a {
    color: #FFF;
}

.form-section .form-content .wpcf7 .form-row-checkbox input {
    margin-top: 0;
    position: relative;
    top: 4px;
    cursor: pointer;
    padding: 0;
    width: 20px;
}
.form-section .form-content .wpcf7 .form-row-checkbox input:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fcfcfc;
    border: 1px solid #aaa;
    border-radius: 5px;
    position: relative;
    top: -2px;
}

.form-section .form-content .wpcf7 .form-row-checkbox input:checked:before {
    background: #2f56ff;
    border-color: #2f56ff;
}

.form-section .form-content .wpcf7 .form-row-checkbox input:checked:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}

.form-section .form-content .wpcf7 .form-row-checkbox .wpcf7-list-item-label {
    margin-left: 16px;
}

.form-section .form-content .wpcf7 .form-row-submit input {
    background: #2f56ff !important;
    border: 1px solid #000000 !important;
    box-shadow: 3px 3px #000;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    height: 56px;
    padding: 16px 32px;
    margin-top: 0;
    position: relative;
}
.form-section .form-content .wpcf7 .form-row-submit input:hover {
    top: 3px;
    left: 3px;
    box-shadow: 0 0 #000;
}

@media screen and (max-width: 991px) {
    .form-section {
        padding: 64px 0;
    }

    .form-section__body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-section .text-content {
        max-width: none;
    }

    .form-section .text-content .pre-heading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .form-section .text-content p {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -0.36px !important;
    }
}

@media screen and (max-width: 480px) {
    .form-section {
        padding: 64px 0 112px;
    }

    .form-section .form-content form .form-row {
        margin-bottom: 16px;
    }
    .form-section .form-content form .form-row:nth-child(2),
    .form-section .form-content form .form-row:nth-child(3) {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-section .form-content form .form-row-input input,
    .form-section .form-content form .form-row-textarea textarea {
        font-size: 16px;
        letter-spacing: -0.16px;
        height: 48px;
        padding: 16px;
    }
    .form-section .form-content .wpcf7 .form-row-checkbox .wpcf7-list-item {
        margin: 24px 0 40px;
    }
    .form-section .form-content .wpcf7 .form-row-submit input {
        width: 100%;
        height: 48px;
        padding: 16px 32px;
    }
}
