
    footer {
      background: #180911;
      color: #fff;
      padding: 30px 20px 10px;
	  margin-top: 40px;
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    /* Logo */
	.footer-logo{
		width: 60%;
		text-align: center;
		position: relative;
		top: -45px;
		left: 0;
	}
    .footer-logo img {
		width: 150px;
		height: 150px;
		background-color: rgb(255, 255, 255);
		border-radius: 0 0 10px 10px;
		padding: 15px 10px;
    }
	.footer-logo .social{
		padding: 15px 0;
		color: rgba(255, 248, 248, 0.774);
		text-align: center;
	}
	.footer-logo .social i.fab{
		margin-right: 5px;
		cursor: pointer;
		font-size: 20px;
	}
	.footer-logo .social i.fab:hover{
		color:#ffffff;
	}
    .footer-logo p {
      font-size: 14px;
      color: #ccc;
      line-height: 1.6;
    }

    /* Links */
    .footer-links h3 {
      margin-bottom: 10px;
      font-size: 16px;
      color: #e490dd;
    }
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    .footer-links ul li {
      margin: 8px 0;
    }
    .footer-links ul li a {
      color: #ccc;
      text-decoration: none;
      transition: 0.3s;
	  font-size: 15px;
    }
    .footer-links ul li a:hover {
      color: #e490dd;
    }

    /* Subscription form */
    .footer-subscribe h3 {
      margin-bottom: 10px;
      font-size: 16px;
      color: #e490dd;
    }
    .footer-subscribe form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-subscribe input[type="email"] {
      flex: 1;
      padding: 5px 10px;
      border: none;
      border-radius: 5px;
      outline: none;
    }
    .footer-subscribe button {
      padding: 5px 20px;
      border: none;
      border-radius: 5px;
      background: #8f0766;
      color: #fffafa;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
    }
    .footer-subscribe button:hover {
      background: #c008a1;
    }

    /* Bottom note */
    .footer-bottom {
      margin-top: 10px;
      font-size: 14px;
      color: #aaa;
      border-top: 1px solid #444;
      padding-top: 5px;
    }
    .footer-bottom small{
      text-align: left;
    }
    .footer-bottom span{
      text-align: right;
    }


/* 
.topFooter{
	display: flex; 
	justify-content: space-evenly;
	align-items: flex-start;
	width:100%;
	background-color: #5e0858;
	padding: 20px 10px 5px;
	margin-top: 20px;
	color: rgb(149, 191, 253);
}
.topFooter > div{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 50%;
}
.topFooter > div > div{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.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: #991d93;
	padding: 3px 20px;
	font-size: 15px;
}
.bottomFooter p{
	display: flex;
	width: 50%;
	padding: 0;
	margin: 0;
	color: #ffffff;
}
.bottomFooter p.m-auto small{
	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;
	}
	.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;
	}
} */
