.footer {
	background-color: var(--dark-grey);
	color: #FFF;
	margin-top: 100px;
}


.footer__container {
	padding-top: 75px;
	padding-bottom: 75px;
}

.footer__logo {
	text-align: center;
	margin-bottom: 30px;
}

.footer__main__description p {
	margin: 0 auto;
	line-height: 200%;
	text-align: center;
	width: 80%;
}

.footer__main hr {
	border-bottom: 1px solid #444;
	height: 1px;
	max-width: 40%;
	margin: 30px auto;
}

.footer__main__contact {
	font-weight: 600;
	margin-top: 30px;
	line-height: 180%;
	text-align: center;
}

.footer__side {
	text-align: center;
	margin-top: 50px;
}

.footer__side__credit {
	color: #8B8B8B;
	margin-top: 50px;
}

.footer__side__credit a {
	color: inherit;
}


/* Social */
.footer__side__social {
	display: flex;
	margin: 20px 0;
	justify-content: center;
}

.footer__side__social__item {
	margin-right: 15px;
}

.footer__side__social__item:last-child {
	margin-right: 0;
}

.footer__side__social__item__link {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #292929;
	border-radius: 50px;
	background-size: 20px 20px;
	background-position: center;
	transition: all 0.5s ease;
}


@media only screen and (min-width: 850px) {

	.footer__container {
		display: flex;
		justify-content: space-between;
	}

	.footer__logo {
		flex: 1;
		text-align: left;
	}

	.footer__main {
		flex: 2;
	}

	.footer__side {
		flex: 1;
		text-align: left;
		margin-top: 0;
	}

	.footer__main__description p {
		text-align: left;
		margin: 0;
	}

	.footer__main hr {
		margin: 30px 0;
	}

	.footer__main__contact {
		text-align: left;
	}

	.footer__side__social {
		justify-content: flex-start;
	}

	.footer__side__social__item__link:hover {
		transform: scale(1.2) rotate(360deg);
	}


}