#contact {
    position: absolute;
    margin-top: -210px;
}

.contact_section {
    margin-top: -20px;
    padding-bottom: 140px;
}

.contact_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.contact_area {
    margin-left: 0;
}

.honeypot {
    width: 500px;
    box-sizing: border-box;
}

.honeypot form {
    box-sizing: border-box;
    width: 100%;
}

.honeypot_field {
    height: 46px;
    border-radius: 5px;
    width: 100%;
    padding: 0;
    padding-left: 20px;
    padding-right: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    background-color: var(--white);
    box-sizing: border-box !important;
    color: var(--green) !important;
    border: 2px solid var(--green);
}

.honeypot_flex select {
    padding-right: 15px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--green) !important;
}

.honeypot_flex select::-ms-expand {
    display: none;
}

.select-wrapper {
    position: relative;
    display: block; 
}

.select-wrapper .select-icon {
    position: absolute;
    top: 18px;
    right: 22px; 
    pointer-events: none; 
}

.select-wrapper select option:first-of-type {
    display: none;
}

.honeypot_textarea {
    height: 120px;
    min-height: 120px;
    max-height: 200px;
    min-width: 100%;
    max-width: 100%;
    padding-top: 15px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: var(--green) !important;
}

.honeypot_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.honeypot_flex .honeypot_field,
.select-wrapper {
    width: calc((100% - 15px) / 2);
}

.select-wrapper .honeypot_field {
    width: 100%;
}

.honeypot_field::placeholder {
    color: var(--green) !important;
}

.honeypot_field:focus,
.honeypot_field:active {
    outline: none;
}

.honeypot .honeypot_submit {
    width: 100%;
    margin-top: 5px;
    background-color: var(--dark-green);
}

.honeypot p:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}

.honeypot h2 {
    margin: -10px auto 30px;
    text-align: center;
    font-size: 48px;
}

#honeypot-messages {
    display: none;
    margin: 0;
    color: var(--green);
}

.success {
    display: block !important;
    text-align: center;
}

.email_label,
.form_email {
    display: none !important;
}

@media (max-width: 1450px) {
    .contact_area {
        width: calc((100% - 64px) / 2);
    }

    .honeypot {
        width: 100%;
    }
}

@media (max-width: 1030px) {
    .contact_wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }

    .contact_area {
        width: 500px;
    }

    .success {
        margin-top: 0px !important;
    }
}

@media (max-width: 800px) {
    #contact {
        position: absolute;
        margin-top: -170px;
    }
}

@media (max-width: 600px) {
    .contact_area {
        width: 100%;
    }

    .honeypot_flex {
        flex-direction: column;
    }

    .honeypot_flex .honeypot_field,
    .select-wrapper {
        width: 100%;
    }
}