/* ===== SECTION: Footer - Start ===== */
footer {
	position: relative;
	width: 100%;
	margin-top: 0;
	padding: 60px 0 15px 0;
	overflow: hidden;
}

/* Footer Content */
footer .footer-content {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--blocks-indent);
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-logo {
	display: inline-block;
	margin-bottom: 30px;
}

footer .footer-description {
	color: rgba(255, 255, 255, 0.7);
	max-width: 310px;
}

footer .h3 {
	margin-bottom: 30px;
}

/* Footer Menu */
footer .footer-menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
	list-style: none;
}

footer .footer-menu li a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

footer .footer-menu li a:hover {
	color: var(--white);
}

/* Footer Contact */
footer .items-group:first-child {
	margin-bottom: 30px;
}

footer .icon-group-text {
	color: var(--white);
}

footer .icon-group-label {
	color: rgba(255, 255, 255, 0.7);
}

/* Footer Bottom */
footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--blocks-indent);
	padding-top: 30px;
}

footer .copyright-text {
	color: rgba(255, 255, 255, 0.7);
	width: 250px;
}
.design-by {
	width: 250px;
	display: flex;
	justify-content: flex-end;
}

footer .payment-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

footer .design-logo {
	height: 20px;
	width: auto;
	filter: invert(1);
}
section.about-me-section .btn.btn-primary {
	width: 280px;
}
/* Adaptive 1680px */
@media (max-width: 1680px) {
	footer {
		padding: 40px 0 15px 0;
	}

	footer .footer-content {
		padding-bottom: 40px;
	}

	footer .footer-logo {
		margin-bottom: 25px;
	}

	footer .h3 {
		margin-bottom: 25px;
	}

	footer .items-group:first-child {
		margin-bottom: 25px;
	}
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
	footer {
		padding: 60px 0 30px 0;
	}

	footer .footer-content {
		padding-bottom: 30px;
	}

	footer .col-25 {
		grid-column: span 6;
		margin-bottom: 30px;
	}

	footer .col-25:last-child {
		grid-column: span 12;
	}

	footer .footer-logo {
		margin-bottom: 20px;
	}

	footer .h3 {
		margin-bottom: 20px;
	}

	footer .items-group:first-child {
		margin-bottom: 20px;
	}

	footer .footer-bottom {
		flex-direction: column;
		align-items: center;
		padding-top: 20px;
		gap: 30px;
	}
	footer .copyright-text {
		width: 100%;
		text-align: center;
	}
	.design-by {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	section.about-me-section .btn.btn-primary {
		width: 100%;
	}
}

/* ===== SECTION: Footer - End ===== */