footer {
	background-color: var(--footer-bg);
	color: var(--text-color);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #b9b9b9;
}

.footer-logo {
	max-width: 200px;
	max-height: 200px;
}

.footer-content,
.footer-bottom {
	display: flex;
	padding: 60px 0;
	position: relative;
	width: calc(100% - 40px);
	max-width: 1200px;
    gap: 50px;
    border-bottom: 1px solid rgb(218 218 218);
}
.footer-bottom {
	border: none;
	padding: 20px 0;
	justify-content: flex-end;
	align-items: flex-end;
	opacity: 0.7;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: var(--main-accent);
	font-size: 18px;
	margin-bottom: 30px;
	font-weight: 600;
	margin-top: 0;
}

.footer-column p,
.footer-column a {
    color: var(--text-color-dim);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin: 14px 0;
    text-decoration: none;
    transition: color .2s;
}

.footer-column a:hover,
.footer-column a.current {
    color: var(--text-color);
}
.footer-column a.current {
    text-decoration: underline;
}


.footer-bottom a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
}


.footer-bottom p,
.footer-links a {
    color: var(--text-color-dim);
    font-size: 14px;
    text-decoration: none;
}

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

.footer-logo-subtitle {
    line-height: 1.5;
	margin-top: 20px;
	margin-bottom: 20px;
}

.footer-social-container {
	display: flex;
	gap: 1rem;
	margin-top: 12px;
	align-items: center;
	height: fit-content;
}

.footer-social-container a {
	font-size: 1.8rem;
	color: var(--text-color-dim);
	margin: 0;
}
.footer-social-container a svg {
    width: 26px;
    height: 26px;
}

.powered-by {
    height: 25px;
}

@media (max-width: 900px) {
    .footer-column h3 {
	    margin-bottom: 20px;
    }
    .footer-content,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-content {
        gap: 40px;
    }


    .social-media {
        margin-top: auto;
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }
}