
/* ======================  Footer ============================== */

.topFooter{
	display: flex;
	justify-content: space-evenly;
	align-items: flex-start;
	width:100%;
	background-color: #5e0858;
	padding: 20px 10px 5px;
	margin-top: 40px;
	color: rgb(245, 149, 253);
}
.topFooter > div{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 50%;
}
.topFooter > div > div{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}
.topFooter > div > div > p{
	font-size: 17px;
	color: rgb(223, 204, 224);
}
.topFooter .logo{
	width: 35%;
	position: relative;
	top: -45px;
	left: 0;
}
.topFooter .logo img{
	width: 150px;
	height: 150px;
	background-color: rgb(255, 255, 255);
	border-radius: 0 0 10px 10px;
	padding: 15px 10px;
}
.topFooter .social{
	padding: 15px 0;
	color: rgba(255, 248, 248, 0.774);
	text-align: center;
	font-size: 20px;
}
.topFooter .social i.fab{
	margin-right: 10px;
	cursor: pointer;
	font-size: 25px;
}
.topFooter .social i.fab:hover{
	color:#ffffff;
}
.featuredLink{
	width: 75%;
	font-size: 14px;
	margin-top: 20px;
}
.featuredLink .link{
	display: flex;
	justify-content: center;
	align-items: center;
}
.featuredLink .link p{
	padding: 0 20px;
}
.featuredLink .link p a{
	display: block;
	color: rgb(212, 187, 212);
	line-height: 2.0em;
}
.featuredLink .link p a:hover{
	color: rgb(223, 204, 224);
	line-height: 2.5em;
}
.information{
	text-align: center;
	width: 60%;
	font-size: 14px;
	margin-top: 20px;
	color: #C0C0C0;
}
.information .label p{
   line-height: 0.3em;
}
.subscribe{
	height:160px;
	width: 40%;
	color: rgb(223, 204, 224);
}
.subscribe form{
	margin-top: auto;
}
.subscribe form .form-group{
	position: relative;
}
.btnattach{
	position: absolute;
	top: 24px;
	right: 0px;
	padding: 3px 10px;
	background-color: #380e36;
	color: #C0C0C0;
	border-radius: 0;
}
.subscribe form .form-control{
	outline-style: none;
	padding: 4px 30px 0 10px;
	border-radius: 0;
}
.bottomFooter{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width:100%;
	background-color: #221021;
	padding: 3px 30px;
	font-size: 15px;
}
.bottomFooter p{
	padding: 0;
	margin: 0;
}
.bottomFooter p.m-auto{
	margin-left: auto;
}
p.lg-only{
	display: block;
	margin-left: auto;
}

@media only screen and (max-width: 840px) {
	
	.topFooter{
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding: 20px 10px 20px;
	}
	.topFooter > div{
		width: 100%;
		justify-content: space-between;
		align-items: flex-start;
	}
	.topFooter .logo{
		width: 50%;
	}
	.topFooter .logo img{
		width: 120px;
		height: 120px;
		padding: 12px 7px;
	}
	.topFooter .social{
		padding: 12px 0;
		text-align: center;
	}
	.topFooter .social i.fab{
		margin-right: 5px;
		font-size: 20px;
	}
	.featuredLink{
		width: 50%;
	}
	.information{ 
		width: 50%;
	}
	.subscribe{
		width: 50%;
	}
	.bottomFooter{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 3px 10px;
		font-size: 14px;
	}
	.bottomFooter p{
		padding: 0;
	}
	.bottomFooter p.m-auto{
		margin-left: auto;
	}
}

@media only screen and (max-width: 500px) {
	p.lg-only{
		display:none;
	}
	.topFooter{
		justify-content: center;
	}
	.topFooter > div{
		display: flex;
		flex-direction: column;
		justify-content:center;
		align-items: center;
		width: 100%;
	}
	.topFooter > div > div{
		width: 100%;
	}
	.topFooter > div > div > p{
		font-size: 15px;
		/* color: rgb(255, 179, 255); */
	}
	.topFooter .logo{
		align-self: center;
		width: 50%;
		position: relative;
		top: -30px;
		left: 0;
		margin-bottom: -30px;
	}
	.topFooter .logo img{
		width: 80px;
		height: 80px;
		background-color: rgb(255, 255, 255);
		border-radius: 0 0 10px 10px;
		padding: 10px;
	}
	.topFooter .logo .social{
		padding: 10px 0;
		color: rgb(243, 199, 239);
		text-align: center;
	}
	.topFooter .logo .social i.fab{
		margin-right: 10px;
		cursor: pointer;
		font-size: 15px;
	}
	.subscribe{
		height:80px;
	}
	.subscribe form{
		margin-top: auto;
	}
	.information .label p{
		padding-left:20px;
	}
	.bottomFooter{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 3px 10px;
		font-size: 14px;
	}
	.m-auto{
		margin-left: 0;
	}
}

/* ======================  Footer ============================== */