footer {
  position: absolute;
  bottom: 0;
  border-top: 10px solid var(--primary);
  border-bottom: 10px solid var(--primary);
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  width: 100%;
	height: 20.5rem;
	padding: 1rem 2rem .3rem;
	background: var(--white);
}
footer > .flex {
	display: flex;
	align-items: flex-start;
}
footer > .flex ul {
	padding-right: 4rem;
}
footer > .flex ul li {
	margin: 0 0 1.5rem;
	padding: 0;
}
.ftr-lnk {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--tertiary);
	text-decoration: none;
}
footer > .flex-col {
	justify-content: space-between;
}
footer .socials {
	display: flex;
	align-items: flex-end;
}
footer .socials a {
	margin: 1rem 0.5rem;
}
footer .socials a:first-child {
	margin-left: 0;
	margin-bottom: 1.3rem;
}
footer .socials a:last-child {
	margin-right: 0;
}
footer .socials a i {
	font-size: 3rem;
	color: var(--tertiary);
	cursor: pointer;
}

footer .socials img {
	height: 3rem;
	width: 3rem;
	color: var(--tertiary);
	cursor: pointer;
} 


.copyright {
	font-size: 1rem;
	font-weight: bold;
	color: var(--primary);
	width: 100%;
	padding: 2rem 0 0;
	text-align: center;
}

/************************************

        FOOTER MOBILE STYLES

************************************/
@media screen and (max-width: 768px) {
	footer > .flex ul {
    padding-right: 2rem;
	}
}
@media screen and (max-width: 640px) {
	footer {
		height: 37rem;
	}
	footer > .flex {
		justify-content: space-between;
		width: 100%;
	}
	footer > .flex-col {
		margin-top: 2rem;
		margin: 0 auto;
	}
	footer > .flex ul {
    padding-right: 2rem;
	}
	footer > .flex ul:last-of-type {
		padding-right: 0;
	}
}