.footer {
	display: flex;
	padding: 8rem 14rem;
	gap: 8rem;
}

.footer .footer-left {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	flex: 2.5;
}

.footer .footer-left .left-main {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer .footer-left .left-main img {
	width: 100%;
	max-width: 15.5rem;
}

.footer .footer-middle {
	display: flex;
	gap: 2rem;
	flex: 2.2;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer .middle-wrapper {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.footer .footer-middle img {
	width: 100%;
	max-width: 8rem;
}

.footer .footer-middle .middle-main {
	display: flex;
	flex-direction: column;
	gap: .8rem;
}

.footer .footer-middle .middle-main div {
	display: flex;
}

.footer .footer-middle .middle-main div a {
	transition: all .3s ease;
}

.footer .footer-middle .middle-main div a:hover {
	color: var(--ac-green-1);
	transition: all .3s ease;
}

.footer .footer-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.footer .footer-right.right-1 {
	display: none;
}

.footer .footer-right.right-1 p {
	margin-bottom: 1.2rem;
}

.footer .footer-right .right-main {
	display: flex;
	gap: 1.5rem;
}

.footer .footer-right .right-main div {
	width: 1.8rem;
	height: 1.8rem;
	padding: 1.8rem;
	border-radius: 100rem;
	background-color: var(--mc-white-1);
	color: var(--mc-black-1);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	transition: all .3s ease;
} 

.footer .footer-right .right-main div:hover {
	background-color: var(--ac-green-1);
	transition: all .3s ease;
	color: var(--mc-white-1);
} 

.footer .footer-copy {
	display: none;
	font-size: 1.3rem;
}

.footer .footer-left p,
.footer .footer-middle p,
.footer .footer-right p  {
	font-size: 1.3rem;
}

.footer .footer-middle a {
	font-size: 1.3rem;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
	.footer { 
		padding: 8rem;
	}

	.footer .footer-right.right-1 {
		display: block;
	}

	.footer .footer-middle {
		flex-direction: column;
	}

	.footer .footer-right.right-2 {
		display: none;
	}

	.footer .br-hide {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.footer { 
		flex-direction: column;
		gap: 4rem;
	}

	.footer .footer-middle {
		flex-direction: row;
		gap: 4rem;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.footer .left-copy {
		display: none;
	}

	.footer .footer-copy {
		display: block;
	}
}

@media only screen and (max-width: 425px) {
	.footer { 
		padding: 8rem 2rem;
	}

	.footer .footer-middle {
		flex-direction: column;
		gap: 4rem;
	}
}

@media only screen and (max-width: 320px) {
	.footer .middle-wrapper {
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 280px) {

}