footer {
	width: 100%;
    height: 100%;

    display: flex;
    flex-flow: row nowrap;

    justify-content: center;
    align-items: center;

    gap: 200px;

    padding: 30px;

    border-top: 2px solid #3f3f3f;

    background-color: #282828;
}

footer .logo-container {
	height: 100%;
	width: 300px;

	align-items: center;
	justify-content: center;
	gap: 5px;
}

footer .logo-img {
	height: 150px;
	margin-bottom: 10px;
}

footer h3 {
	margin-bottom: 10px;
}

footer img {
	height: 16px;
}

footer .contact-container {
	height: 100%;
	width: 300px;

	align-items: center;
	justify-content: center;
	gap: 5px;
}

footer .resource-container {
	height: 100%;
	width: 300px;

	align-items: center;
	justify-content: center;
	gap: 5px;
}

@media screen and (max-width: 1500px) {
	footer {
		gap: 100px;
	}
}

@media screen and (max-width: 1300px) {
	footer {
		gap: 30px;
	}
}

@media screen and (max-width: 1050px) {
	footer {
		flex-flow: column nowrap;
	}
}