﻿footer {
	background: linear-gradient(135deg,#2f1658,#3d2070);
	position: relative;
	overflow: hidden;
}

	footer::before {
		content: "";
		position: absolute;
		top: -120px;
		right: -120px;
		width: 320px;
		height: 320px;
		border-radius: 50%;
		background: rgba(255,255,255,.05);
		filter: blur(10px);
	}

.footer-logo-card {
	background: #fff;
	padding: 12px 20px;
	border-radius: 20px;
	display: inline-block;
	box-shadow: 0 15px 40px rgba(0,0,0,.25);
	transition: .4s;
}

	.footer-logo-card:hover {
		transform: translateY(-6px);
	}

.footer-text {
	max-width: 320px;
	line-height: 1.9;
	font-size: 15px;
	opacity: .9;
	margin-top: 20px;
}

.footer-social {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	text-decoration: none;
	transition: .35s;
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(10px);
}

	.footer-social:hover {
		background: #fff;
		color: #4b2c73;
		transform: translateY(-6px) scale(1.08);
		box-shadow: 0 10px 25px rgba(255,255,255,.25);
	}

footer h5 {
	font-size: 18px;
	letter-spacing: .5px;
	margin-bottom: 18px !important;
	position: relative;
	display: inline-block;
}

	footer h5::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -8px;
		width: 45px;
		height: 3px;
		background: #ffb703;
		border-radius: 20px;
	}

.footer-link {
	display: block;
	padding: 6px 0;
	text-decoration: none;
	color: rgba(255,255,255,.82);
	transition: .3s;
}

	.footer-link:hover {
		color: #fff;
		padding-left: 8px;
	}

.footer-contact-icon {
	width: 22px;
	color: #ffb703;
	margin-right: 10px;
}

.footer-divider {
	border-color: rgba(255,255,255,.12);
	margin: 30px 0;
}

footer small {
	opacity: .85;
}

footer .row > div {
	animation: footerFade .8s ease;
}

@keyframes footerFade {

	from {
		opacity: 0;
		transform: translateY(35px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
