footer {
	background: url("../../assets/img/global/footer_bg.png");
}

footer p {
	color: var(--white);
}

.footer_links_contact p {
	font-weight: 700;

	margin-bottom: 30px;
}

footer .link_container {
	display: flex;

	gap: clamp(
		2.1875rem,
		1.1853rem + 1.6164vw,
		3.125rem
	); /* @1920 50px @992 35px */
}

footer .content {
	display: flex;

	gap: clamp(
		4.375rem,
		2.3707rem + 3.2328vw,
		6.25rem
	); /* @1920 100px @992 70px */

	padding: 50px 0;
}

footer .footer_brand {
	max-width: 456px;

	display: flex;

	flex-direction: column;

	gap: 20px;
}

.footer_brand a {
	max-width: 327.692px;
}

footer .footer_links_contact {
	display: flex;

	width: 100%;

	gap: clamp(
		4.375rem,
		2.3707rem + 3.2328vw,
		6.25rem
	); /* @1920 100px @992 70px */
}

footer .links {
	gap: 10px;
}

footer a {
	color: var(--Purp-Wht-Txt);
}

footer .quick_links,
footer .services_links,
footer .contact_details {
	display: flex;

	flex-direction: column;
}

footer h5 {
	width: max-content;

	color: var(--Purp-Wht);
}

footer .contact_details .p::before {
	margin-top: 1px;
}

footer .contact_bar {
	gap: 15px;
}

footer .contact_details {
	max-width: 324px;
}

footer .contact_details .links p {
	display: unset;
}

footer .contact_details .links {
	gap: 0;
}

footer .socials {
	display: flex;

	gap: 30px;

	flex-direction: column;

	font-family: Inter;

	font-weight: 700;

	line-height: 25px;
}

.links p {
	font-weight: 400;
}

footer .soc_med_i_con {
	border: 1.091px solid var(--Purp-Wht-Txt);

	height: 23.997px;

	width: 23.997px;
}

footer .copyright_side {
	text-align: center;
}

.lower_footer {
	padding: 30px 10px;

	border-top: 1px solid #fff;
}

.lower_footer p {
	height: 44px;

	margin-top: 16px;

	align-content: center;

	padding: 10px;
}

.lower_footer a {
	color: white;

	font-size: 18px;

	font-weight: 600;

	line-height: normal;
}

.legal_footer {
	border-top: 1px solid rgba(255, 255, 255, 0.15);

	background: #232436;

	padding: 30px 0;
}

.legal_footer p {
	display: flex;

	gap: 100px;

	justify-content: center;
}

@media (max-width: 1199px) {
	footer .content {
		padding: 50px 30px;
	}
}

@media (max-width: 991px) {
	footer .content {
		flex-direction: column;

		gap: 70px;
	}

	footer .footer_links_contact {
		justify-content: flex-start;

		flex-wrap: wrap;
	}

	footer .footer_brand {
		max-width: unset;
	}

	footer .contact_details {
		max-width: unset;
	}
}

@media (max-width: 767px) {
	footer .details p {
		flex-wrap: wrap;
	}

	footer .content {
		gap: 50px;
	}

	.lower_footer {
		height: unset;
	}

	.lower_footer p {
		height: unset;
	}

	footer .footer_brand {
		align-items: center;

		text-align: center;
	}

	footer .content {
		padding: 50px 20px;
	}
}

.red-cross {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
	background: #EFBF42;
	padding: 15px 0 15px 15px;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	cursor: pointer;
}

.red-cross a {
	transition: all 300ms ease-in-out;
	display: flex;
	width: 75px;
	align-items: center;
	color: #232436;
	text-align: center;
	font-family: Inter, sans-serif;
	font-size: 0;
	font-weight: 700;
	line-height: normal;
	gap: 10px;
	overflow: hidden;
	white-space: nowrap;
	pointer-events: none; /* disable anchor unless expanded */
}

.red-cross.active a {
	width: 430px;
	font-size: 20px;
	pointer-events: auto; /* re-enable anchor on expand */
}

.red-cross a img {
	max-width: 50px;
}

@media all and (max-width: 480px) {
	.red-cross a {
		width: 60px;
	}

	.red-cross.active a {
		width: 300px;
		font-size: 12px;
	}
}