
/* Footer */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    margin-left: 20px;
    margin-right: 20px;
    gap: 20px;
}

.footer-logo {
    height: 200px;
	display: flex;
}
.footer-logo img {
    height: 100%;
}

.footer-column {
	flex: 1;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-column h3 {
    color: #fff;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 5px;
}

.footer-newsletter {
	width: fit-content;
	height: 40px;
	color: white;
	box-shadow: inset 0 0 0px 3px white;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	cursor: pointer;
    transition: box-shadow .3s ease, color .3s ease;
}
@media (min-width: 768px) {
    .footer-newsletter:hover {
        color: black;
		box-shadow: inset 0 0 0px 21px white;
    }
} 
.footer-column p {
    color: #fff;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-decoration: none;
    margin: 0;
}

.footer-column a {
    color: #fff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
    background-color: black;
    margin-left: 20px;
    margin-right: 20px;
}

.footer-bottom p,
.footer-links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-media img {
    width: 24px;
    height: 24px;
}


@media (max-width: 890px) {
    .footer-content {
        gap: 40px;
    }
    .footer-content,
    .footer-bottom {
        flex-direction: column;
    }
    .footer-logo {
        height: 150px;
    }
    .footer-column {
    	gap: 15px;
    }
}