/* Footer */
footer {
	background-color: var(--black);
	color: var(--white);
	padding: 40px 0 20px;
	max-height: 480px;
	height: 100%;
}

/* Refactored from footer img */
footer img {
	border-style: none;
	width: 100%;
	max-width: 150px;
	min-width: 70px;
	/* filter: brightness(0); */
}

/* Refactored from footer .multicolumn2 .column */
footer .multicolumn2 .column {
	width: auto !important;
}

/* Refactored from footer .multicolumn2 .column:first-child */
footer .multicolumn2 .column:first-child {
	text-align: right;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.footer-logo .logo {
	color: #fff;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #444;
	padding-top: 20px;
	font-size: 0.9em;
}

#form-contact {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

/* Refactored from #form-contact input */
#form-contact input {
	width: 100%;
	padding: 0.5rem .8rem;
	border: 1px solid #fff;
	border-radius: .5rem;
	font-size: 1rem;
	background: none;
	color: #fff;
}

/* Refactored from #form-contact input:focus-visible */
#form-contact input:focus-visible {
	outline: 2px solid var(--of-white);
}

/* Refactored from #form-contact textarea */
#form-contact textarea {
	resize: none;
	width: 100%;
	padding: .5rem .8rem;
	border: 1px solid #fff;
	border-radius: .5rem;
	color: #fff;
	background: none;
}

/* Refactored from #form-contact textarea:focus-visible */
#form-contact textarea:focus-visible {
	outline: 2px solid var(--of-white);
}

/* Refactored from #form-contact button */
#form-contact button {
	padding: .7rem 1.2rem;
	border: none;
	border-radius: .5rem;
	background-color: var(--of-white);
	color: var(--black);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

/* Refactored from #form-contact button:hover */
#form-contact button:hover {
	background-color: #fff3;
	color: var(--white);
	border: 1px solid var(--white);
}

@media only screen and (max-width: 767px) {
	footer {
		max-height: 600px;
	}

	/* Refactored from @media footer .multicolumn2 */
	footer .multicolumn2 {
		flex-direction: column;
	}

	/* Refactored from @media footer .multicolumn2 .column:first-child */
	footer .multicolumn2 .column:first-child {
		padding-right: 1rem;
		border-right: 1px solid #fff;
	}

	/* Refactored from @media footer .copyright */
	footer .copyright {
		font-size: 0.8em;
	}
}