/** FOOTER - START **/
.footer {
    background-color: var(--color-cream);
    border-top: solid 1px var(--color-cream-border);
    border-bottom: solid 1px var(--color-cream-border);
}
.footer_info {
    text-align: center;
}
.footer_social {
    padding-top: 20px;
}
.footer_social > a img {
    width: 70%;
    height: auto;
    max-width: 200px;
}
.footer hr {
    margin: 40px 0 0 0;
    border-top: solid 1px var(--color-cream-border);
}
.copyright {
    margin-top: 15px;
    text-align: center;
}
.copyright_line {
    display: block;
    margin-bottom: 4px;
    text-align: center;
}
@media (min-width: 1025px) {
    .copyright_line:first-child {
        display: block;
        margin-bottom: 6px;
    }
    .copyright_line:not(:first-child) {
        display: inline;
        margin-bottom: 0;
    }
    .copyright_line:not(:first-child):not(:last-child)::after {
        content: ' - ';
    }
}
/** CONTACT FORM **/
.contact-form {
    width: 100%;
    padding-top: 30px;
}
.contact-form .contact-form_fields input, 
.contact-form .contact-form_fields select, 
.contact-form .contact-form_fields textarea {
    width: 100%;
    border: solid 1px var(--color-cream-border);
    box-sizing: border-box;
    font-size: 16px;
}
#form-message {
    margin-top: 10px;
}
.contact-form .contact-form_fields input,
.contact-form .contact-form_fields select {
    padding: 12px 8px;
}
.contact-form .contact-form_fields textarea {
    height: 120px;
    padding: 8px;
}
.contact-form .contact-form_fields li {
    margin-bottom: 12px;
}
.form-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.form-submit-row button[type="submit"] {
    display: inline-block;
    background-color: var(--color-blue);
    color: #fff;
    font-weight: 400;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
}
.form-submit-row button[type="submit"]:hover {
    background-color: var(--color-orange);
}
.contact-form .honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    width: 0;
    opacity: 0;
}
/** FOOTER - END **/

@media (min-width: 1025px) {
    .footer_info {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer_social {
        padding-top: 0;
    }
    .footer_social > a img {
        width: auto;
    }
    .footer .container-default {
        text-align: center;
    } 
    .contact-form {
        width: 50%;
        padding-top: 0;
        text-align: left;
    }
    .contact-form .contact-form_fields li {
        text-align: left;
        margin-bottom: 10px;
    } 
}
