.footer-site {
	padding-top:23px;
}

.footer-site-wrap {
	max-width:1200px;
	width:100%;
	min-height:92px;
	margin:0 auto;
	position:relative;
	background: rgba(255, 255, 255, 0.49);
	border-radius: 50px;
	display:flex;
	align-items:center;
	justify-content:flex-end;
	padding-right:36px;
}

.footer-site-wrap::after {
	content:"";
	position:absolute;
	top:-45px;
	left:0;
	width:140px;
	height:129px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	background-image:url(/wp-content/uploads/2026/04/Layer-3-12.svg);
}

.footer-site-wrap::before {
	content:"";
	position:absolute;
	top:-45px;
	right:0;
	width:47px;
	height:35px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	background-image:url(/wp-content/uploads/2026/04/Layer-14-3.svg);
	display:none;
}

#footer-menu {
	list-style:none;
	padding:0;
	margin:0;
	display:flex;
	gap:33px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 20px;
}

#footer-menu li a {
	text-decoration:none;
	color: #ff0089;
}

@media (max-width: 768px) {
	#footer-menu {
		flex-direction:column;
		gap:0;
		text-align:center;
	}
	
	.footer-site-wrap::after {
		width:62px;
		height:57px;
		top:-20px;
		left:20px;
	}
	
	.footer-site-wrap {
		justify-content:center;
		padding:0;
	}
	
	.footer-site {
		padding:23px 15px 0 15px;
	}
	
	.footer-site-wrap::before {
		display:block;
		top:45px;
	}
}