.footer {
	color: white;
}

.footer-body {
	/* border: 1px solid magenta; */
	position: relative;
}

.footer-body .footer-image {
	height: 350px;
	object-fit: cover;
	/* object-position: 0px 20%; */
}

.footer-main {
	/* border: 1px solid green; */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	padding: 5rem 8rem;
	gap: 4rem;
}

/* Footer Main Left */
.footer-main__left {
	flex: 1;
	/* border: 1px solid white; */
	display: flex;
	flex-direction: column;
	gap: 2rem;
	/* justify-content: space-between; */
}

.footer-main__left .footer-logo {
	width: 20rem;
	/* border: 1px solid magenta; */
}

.footer-main__left .footer-get-app {
	/* border: 1px solid magenta; */
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-main__left .footer-paragraph-1,
.footer-main__left .footer-paragraph-2 {
	/* border: 1px solid magenta; */
	font-weight: 300;
	text-align: justify;
}

.footer-main__left .footer-paragraph-2 {
	font-size: 1.2rem;
}

/* Footer Main Right */
.footer-main__right {
	flex: 2;
	/* border: 1px solid black; */
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
}

.footer-main__right .footer-nav {
	/* border: 1px solid magenta; */
	width: 100%;
	display: flex;
	/* align-items: center; */
	justify-content: space-between;
	flex-wrap: wrap;
	/* height: 46px; */
}

.footer-main__right .footer-nav .footer-nav__item {
	/* border: 1px solid magenta; */
	display: flex;
	flex-direction: column;
	font-weight: 300;
}

.footer-main__right .footer-nav .footer-nav__item p.footer-nav__item-title {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.footer-main__right .footer-nav .footer-nav__item .footer-nav__item-body {
	/* border: 1px solid magenta; */
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-main__right .footer-nav .footer-nav__item:nth-child(2) .wa,
.footer-main__right .footer-nav .footer-nav__item:nth-child(4) .wa {
	/* border: 1px solid magenta; */
	display: flex;
	align-items: center;
	gap: .5rem;
}

.footer-main__right .mobile-app-downloads-wrapper {
	display: flex;
	gap: 1rem;
}

.footer-main__right .mobile-app-downloads {
	max-width: 10rem;
}

.footer-main__right .footer-contact {
	/* border: 1px solid magenta; */
	display: flex;
	flex-direction: column;
	/* width: 350px; */
	gap: 1rem;
	font-size: 1.2rem;
}

.footer-main__right .footer-contact .footer-contact__item {
	/* border: 1px solid magenta; */
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.footer-main__right .footer-contact .footer-contact__item img {
	width: 1.8rem;
	/* border: 1px solid magenta; */
}

.footer-main__right .footer-contact .footer-contact__item p {
	/* border: 1px solid magenta; */
	font-size: 1.4rem;
	font-weight: 300;
}

.footer-hover:hover {
	font-weight: 500;
	transition: all .3s ease;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
	.footer-body .footer-image {
		height: 450px;
		object-position: initial;
	}

	.footer-main__right .footer-nav {
		gap: 2rem;
	}

	/* Footer Main Right */
	.footer-main__right {
		flex: 1.2;
	}
}

@media only screen and (max-width: 768px) {
	.footer-body .footer-image {
		height: 750px;
		object-position: initial;
	}

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

	/* Footer Main Left */
	.footer-main__left {
		gap: 4rem;
	}
}

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

	.footer-main__right {
		gap: 4rem;
	}

	/* Footer Main Right */
	.footer-main__right .footer-nav {
		justify-content: flex-start;
		gap: 1rem;
		height: auto;
	}

	.footer-main__right .footer-nav a {
		margin-top: 1rem;
	}

	.footer-main__right .footer-contact {
		width: 100%;
	}
}

@media only screen and (max-width: 320px) {
	.footer-body .footer-image {
		height: 780px;
	}
}

@media only screen and (max-width: 280px) {
	.footer-body .footer-image {
		height: 1050px;
	}
}