/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24

 */

.footer-wrapper {
	width: calc(100% - 40px);
	background-color: var(--blue-1000);

	padding: 40px 20px;
	padding-bottom: 60px;
}

.footer-wrapper .footer-container {
	display: flex;
	flex-direction: column;

	gap: 30px;
}

.footer-wrapper .footer-container .container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;

	column-gap: 30px;
	row-gap: 20px;
}

.footer-wrapper .footer-container .container .logo {
	width: 100px;
}

.footer-wrapper .footer-container .container .social-networks-container {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-wrapper .footer-container .container .social-networks-container .social-network-icon {
	width: fit-content;
	height: fit-content;
	display: flex;
}

.footer-wrapper .footer-container .container .social-networks-container .social-network-with-text {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-wrapper .footer-container .container .social-networks-container .social-network-with-text:hover {
	color: var(--blue-600);
}

.footer-wrapper .footer-container .container .title {
	font-size: 24px;
	text-align: center;
}

@media (min-width: 768px) {
	.footer-wrapper {
		width: calc(100% - 80px);

		padding: 40px 40px;
		padding-bottom: 60px;
	}

	.footer-wrapper .footer-container .container .logo {
		width: 135px;
	}

	.footer-wrapper .footer-container .container.justified {
		justify-content: space-between;
	}
}

@media (min-width: 1440px) {
	.footer-wrapper {
		width: calc(100% - 270px);
		padding: 70px 135px;
	}

	.footer-wrapper .footer-container .container.justified {
		justify-content: space-between;
	}
}
