

.carousel-inner .carousel-item > img {
	-webkit-animation: thing 20s;
	-o-animation: thing 20s;
	animation: thing 20s; 
  }
  @keyframes thing {
	from {
	   transform: scale(1, 1);
	}
	to {
	  transform: scale(1.5, 1.5);
	}
  }


/*---------------------
  Footer
-----------------------*/
.footer {
	background: #040404;
	color: #ffffff;
}

.footer-title {
	color: #fff;
	font-weight: 600;
	margin-bottom: 1.5rem;
	position: relative;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 30px;
	height: 2px;
	background: #6c5ce7;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 1rem;
}

.footer-links a {
	color: #b4b6bb;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: #ffffff;
	padding-left: 5px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: #ffffff;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: #6c5ce7;
	transform: translateY(-3px);
}

.newsletter-input {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.1);
	color: #ffffff;
}

.newsletter-input:focus {
	background: rgba(255,255,255,0.15);
	border-color: #6c5ce7;
	color: #ffffff;
	box-shadow: none;
}

.btn-subscribe {
	background: #6c5ce7;
	border: none;
	padding: 0.5rem 1.5rem;
	transition: all 0.3s ease;
}

.btn-subscribe:hover {
	background: #5a4bd1;
	transform: translateY(-2px);
}

.footer-bottom {
	background: rgba(0,0,0,0.2);
}

.footer-bottom a {
	color: #6c5ce7;
	text-decoration: none;
}

.footer-bottom a:hover {
	color: #ffffff;
}