.form_module {
    margin: 180px 0 60px;
}
.form_module .wrapper {
    position: relative;
}

.form_module .content {
    max-width: 800px;
    margin: auto;
}
.form_module h1 {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}
.form_module .text {
    font-size: 20px;
    text-align: center;
}
.form_module .af-fields {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 0;
}
.contact-firstname, .contact-lastname, .contact-phone, .contact-role {
    width: calc(50% - 15px);
}
.contact-email {
    width: 100%;
}
.form_module .af-field {
    border: 0 !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
}
.form_module .af-label {
    display: none;
}
.form_module .af-input input, .form_module .af-input textarea {
    border: 1px solid #C3C3C3;
    font-weight: 300;
    border-radius: 20px;
    padding: 12px 18px 10px !important;
    background-color: var(--white);
    color: var(--dark);
}
.form_module .af-input input:focus, .form_module .af-input textarea:focus {
    outline: 0 !important;
}
.form_module .af-input input::placeholder, .form_module .af-input textarea::placeholder {
    color: var(--dark);
}
.form_module .af-submit {
    padding: 0;
    margin: auto;
    width: 100%;
    text-align: center;
}
.form_module .contact-privacy {
    margin-top: 30px !important;
    display: block;
    margin-bottom: 40px !important;
}
.form_module .af-form, .form_module .hbspt-form {
    margin-top: 60px;
    padding: 0 15px;
    z-index: 2;
    position: relative;
}
.contact-privacy ul li label {
    display: flex !important;
    flex-direction: unset;
    text-align: left;
    line-height: 1;
    font-size: 12px;
    column-gap: 10px;
}
.contact-privacy input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* display: inline-block; */
    /* position: absolute; */
    background: url(/wp-content/themes/ncore/assets/images/checkbox-off.svg) no-repeat center;
    background-size: 25px 25px;
    width: 35px;
    height: 25px;
    /* right: 0; */
    margin: 0;
    cursor: pointer;
    border: 0;
    margin: -2px 0 0 -7px !important;
}
.contact-privacy input[type="checkbox"]:checked {
    background: url(/wp-content/themes/ncore/assets/images/checkbox-on.svg) no-repeat center;
    background-size: 25px 25px;
    width: 35px;
    height: 25px;
}
.contact-privacy ul.acf-radio-list, .contact-privacy ul.acf-checkbox-list, .contact-privacy ul.acf-radio-list:focus-within, .contact-privacy ul.acf-checkbox-list:focus-within {
    border-radius: 0;
    outline: 0 !important;
    border: 0 !important;
}

.form_element_c {
    position: absolute;
    left: 0;
    bottom: 45%;
}
.form_element_tr {
    position: absolute;
    right: 0;
    top: -150px;
}

@media screen and (max-width: 991px) {
    .form_element_tr {
        position: absolute;
        right: 0;
        top: -150px;
        max-width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .form_module .text {
        font-size: 18px;
    }
    .form_module h1 {
        margin-bottom: 15px;
    }

    .contact-firstname, .contact-lastname, .contact-phone, .contact-role {
        width: 100%;
    }
}