/*** Footer Elements ***/
.btn-contact {
    display: block !important;
    background: var(--color-brand-50);
    border-radius: 8px;
    color: var(--color-gray-0);
    box-shadow: none !important;
}
.btn-contact:hover {
    background: var(--color-brand-100);
    color: var(--color-brand-20);
}
.contact {
    justify-content: stretch;
}
.contact-form > div {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 16px;
}
.contact-form label {
    flex: 1;
    border-radius: 8px 0 0 8px;
    padding: 4px 0 4px 8px;
    box-shadow: none;
    border-right: none;
    background: var(--color-brand-20);
    font-size: 0.9rem;
}
.contact-form label[for*="contact"] { 
  	/* Jetpack CSS Override */
    margin-bottom: 0rem;
}
.contact-form input,
.contact-form textarea {
    flex: 3;
    border: none;
    border-left: none;
    border-radius: 0 8px 8px 0;
    box-sizing: border-box;
    padding: 4px 8px 4px 4px;
    background: var(--color-brand-20);
    font-size: 1rem;
  margin-bottom: 0 !important; /*override Jetpack form css*/
}
.contact-form textarea {
    resize: vertical;
}
.contact-form input:focus,
.contact-form input:focus ~ label,
.contact-form textarea:focus,
.contact-form textarea:focus ~ label {
    background: var(--color-gray-0);
}
.contact-form input.wpcf7-submit[type='submit'] {
    background: var(--color-brand-50);
    border: none;
    border-radius: 8px;
    color: var(--color-gray-0);
    box-shadow: none;
    transition: all 0.25s;
}
.contact-form.wpcf7-form input.wpcf7-submit[type='submit']:hover {
    background: var(--color-brand-100);
    color: var(--color-brand-20);
}
.footer-links, .footer-links ul {
    padding: 0;
    list-style-type: none;
}
.footer-links li {
    margin: 0;
}
.footer-links li a {
	display: inline-block;
    font-size: small;
}
.footer-links li img {
    margin-top: 4px;
	vertical-align: -12px;
}


#copyright {
    margin-bottom: 10rem;
}

@media (min-width: 768px) {
    #copyright {
        margin-bottom: 0;
    }
}