.site-footer {
	max-width: 1240px;
	margin: 30px auto 0;
}

.site-footer > div {
	background-color: #fff;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-middle {
	border-bottom: 1px solid #585C834D;
	padding-bottom: 70px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.primary-button {
	font-size: 18px;
	font-weight: 700;
	background: linear-gradient(0deg, #A917FE 0%, #FE38D3 100%);
	padding: 10px 56px;
	border-radius: 6px;
	display: block;
	max-width: fit-content;
}

.primary-button:hover {
	background: linear-gradient(0deg, #FE38D3 0%, #FE38D3 100%);
	color: #fff;
}

.social-container {
	display: flex;
	flex-direction: column;
	color: #fff;
	gap: 30px;
}

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

.social-networks {
	display: flex;
	gap: 5px;
}

.social-networks a {
	border-radius: 16px;
	background: #23208f;
	width: fit-content;
	padding: 5px;
	line-height: normal;
}

.social-networks img {
	width: 20px;
	filter: invert(1);
}

.social-top-text {
	font-weight: 600;
	font-size: 14px;
	color: #23208f;
}

.social-bottom-text {
	font-size: 18px;
	font-weight: 600;
	color: #23208f;
}

.footer-menu {
	font-size: 12px;
	font-weight: 600;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu li a {
	color: #9296A2;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-text {
	display: flex;
	flex-direction: column;
}

.contact-title {
	font-weight: 600;
	font-size: 18px;
	color: #23208f;
}

.contact-description {
	color: #B1B4BC;
	font-weight: 600;
	font-size: 14px;
}

.contact-email a {
	display: flex;
	align-items: center;
	gap: 5px;
}

.contact-email img {
	filter: invert(1);
}

.contact-email span {
	font-size: 16px;
	font-weight: 600;
	color: #23208f;
}

.footer-bottom {
	padding-top: 70px;
	display: flex;
	justify-content: center;
}

.bottom-left {
	display: flex;
	flex-direction: column;
	gap: 30px;

	width: 100vw;
	max-width: 100vw;

	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);

	background: linear-gradient(180deg, #FE38D3 0%, #A917FE 100%);
	text-align: center;
}


.license {
	font-size: 12px;
	font-weight: 600;
	color: #869DEE;
}

.license img {
	filter: invert(.3);
}

.bottom-left .copyright {
	color: #dde0e9;
	font-weight: 400;
	font-size: 12px;
	max-width: 818px;
	margin: 20px auto;
	padding: 0 20px;
}

.bottom-right {
	display: flex;
	gap: 20px;
	justify-content: flex-end;
	height: fit-content;
	align-items: center;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #444A5F;
    border-radius: 22px;
    height: 32px;
    padding: 10px;
}

.footer-language span {
	font-weight: 700;
	font-size: 12px;
}

@media (max-width: 1380px) {
	.footer-top {
		flex-direction: column;
		align-items: center;
	}

	.footer-middle {
		flex-direction: column;
		align-items: center;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: center;
	}

	.social-container {
		align-items: center;
		margin: 15px 0;
		gap: 10px;
	}

	.footer-social {
		align-items: center;
	}

	.footer-menu {
		text-align: center;
		margin-bottom: 15px;
	}

	.footer-contact {
		text-align: center!important;
	}

	.bootom-left {
		align-items: center;
		gap: 10px;
	}

	.bootom-left .copyright {
		text-align: center;
	}

	.bottom-right {
		justify-content: center;
	}

	.footer-bottom {
		gap: 15px;
	}

	.bootom-left .copyright {
		width: fit-content;
	}

	.bootom-left .copyright br {
		display: none;
	}
	.contact-email a {
		justify-content: center;
	}

}





