.footer-container {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.footer_lines__container {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-lines {
	width: 100%;
	background-color: #0b4778;
}

.footer-line {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	width: 100%;
	padding: 0.75rem 1rem;
}

.footer-hr {
	border-bottom: 1px solid #eff9fa;
}

.footer-line__text {
	color: white;
	font-size: 18px;
}

.footer-info {
	background: #3d4551;
	width: 100%;
}

.footer-logo {
	width: 300px;
	height: 100px;
	padding: 1rem 0;
	object-fit: contain;
}

.footer-icons {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-under {
	background-color: white;
	display: flex;
	width: 100%;
	gap: 1.5rem;
	align-items: center;
	font-size: 13px;
	padding: 0.75rem 1.25rem 1.5rem;
}

.footer-under__text {
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.604);
}

.footer-under > .container {
	width: 100%;
	display: flex;
	gap: 1.5rem;
}

.cdc-footer__body-social div a i::after {
	position: absolute;
	height: 2rem;
	width: 2rem;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 2rem;
	font-family: var(--icons-cdc-fa);
	content: '\f172';
	font-weight: 300;
	font-size: 1.75rem;
}

.cdc-footer__body-social div a i,
.cdc-footer__body-social div a i::before {
	position: absolute;
	height: 2rem;
	width: 2rem;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 2rem;
}

.social-icons {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	row-gap: 0.75rem;
	height: fit-content;
}
.social-icons a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: 0.3s;
}
.social-icons a:hover {
	background: #fff;
	color: #3a4149;
}

.footer-info > .container {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 900px) {
	.footer_lines__container {
		flex-direction: column;
		padding: 0;
	}
	.footer-info > .container {
		display: flex;
		flex-direction: column;
		gap: 0rem;
		align-items: flex-start;
	}
	.social-icons {
		display: flex;
		gap: 0.5rem;
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 350px) {
	.social-icons {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
		row-gap: 0.75rem;
	}
}
