.wpcf7-form-control {
    border: 1px solid rgba(66, 80, 102, 0.4);
    border-radius: 5px;
    padding: 9.7px;
    box-shadow: 0 2px 4px 0 rgba(66, 80, 102, 0.1);
    background: #092a3f;
    outline: none;
    font-weight: 400;
    font-size: 18px;
    color: #FFF;
    width: 100%;
    transition: all 0.3s ease-out;
}

.wpcf7-form-control:focus {
    border-color: #00519b;
}

.wpcf7-not-valid {
    border-color: #e01f27;
}

.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.cf7__fields-wrapper {
    display: flex;
    gap: 30px;
}

.cf7__fields-wrapper {
    margin-bottom: 32px;
}

.cf7__field-label {
    font-weight: 600;
    font-size: 16px;
}

.wpcf7-form-control::placeholder {
    font-weight: 400;
}

.cf7__field-label {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.wpcf7-textarea {
    max-height: 142px;
}

.cf7__submit-wrapper {
    width: fit-content;
    position: relative;
    cursor: pointer;
}

body .wpcf7-spinner {
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    margin: 0;
}

.wpcf7-submit {
    transition-duration: 0s;
}

.submitting .wpcf7-submit {
    color: transparent;
}

.wpcf7-submit:focus {
    border-color: #E01F27;;
}

body .wpcf7 form.invalid .wpcf7-response-output {
    border-color: #e01f27;
}

.wpcf7-not-valid-tip {
    color: #e01f27;
    font-weight: 400;
    font-size: 12px;
}

body .wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0 0;
    border-radius: 5px;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
}

@media screen and (max-width: 599.98px) {
    .cf7__fields-wrapper {
        flex-direction: column;
    }

    .cf7__submit-wrapper {
        width: 100%;
    }
}