/* //HC */

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    display: flex;
    justify-content: left;
    flex-direction: row;
    gap: 10px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.footer-row-btn-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-row-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
	gap: 20px;
}

.footer-row-2 .footer-section:nth-child(1) {
	align-items: start;
}

.footer-row-2 .footer-section:nth-child(2) {
	align-items: center;
}

.footer-row-2 .footer-section:nth-child(3) {
	align-items: end;
}

.copyright {
	border-top: 1px solid var(--secondary-color);
	padding: 15px 0;
}

.copyright .content-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.copyright p {
	text-align: center;
}

p {
	margin-bottom: 0 !important;
}

@media (max-width: 767px) {
	.footer-row {
		flex-direction: column;
	}

	.footer-row-2 {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.footer-row-2 .footer-section:nth-child(1) {
		align-items: start;
		width: 100%;
        align-items: center;
	}

	.footer-row-2 .footer-section:nth-child(2) {
		align-items: start;
		width: 100%;
        align-items: center;
	}

	.footer-row-2 .footer-section:nth-child(3) {
		align-items: start;
		width: 100%;
        align-items: center;
	}
}

@media (max-width: 425px) {
	.footer-row-btn-container {
		flex-direction: column;
	}
}