/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.3
*/
.wp-caption img {
	height: auto;
	width: 100%;
}

.is-divider {
	background: linear-gradient(to right, #31ccff, #ffce21, #f0c);
}

.logo img {
	position: relative;
	top: 4px;
	width: 250px;
	height: auto;
	display: block;
	margin: 0 auto;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-5px);
	}

	100% {
		transform: translateY(0px);
	}

}

.header-button-1 a {
	display: inline-block;
	padding-top: 4px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	font-size: 12px;
	color: #f5f60c;
	background-image: linear-gradient(to right, #00fff0 0%, #1800ff 51%, #00fff0 100%);
	background-size: 200% auto;
	margin: 20px;
	animation: gradientMove 1s ease infinite, pulse 1s ease infinite;
	transition: box-shadow 0.5s ease, transform 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes gradientMove {
	0% {
		background-position: 0% center;
	}

	100% {
		background-position: 200% center;
	}

}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.35);
	}

	100% {
		transform: scale(1);
	}

}

footer * {
	color: #fff;
}

.header-bottom .header-bottom-nav > li > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

h1, h2, h3 {
	color: transparent!important;
	background: linear-gradient(to top, #00DD00, #fefad8 80%, #fefad8);
	background-clip: text;
	-webkit-background-clip: text;
}

.footer-wrapper a {
	color: transparent;
	background: linear-gradient(to top, #00DD00, #fefad8 80%, #fefad8);
	background-clip: text;
	-webkit-background-clip: text;
}
.footer-wrapper a:hover {
	color: transparent;
	background: linear-gradient(to top, #ffea00, #fefad8 80%, #fefad8);
	background-clip: text;
	-webkit-background-clip: text;
}

#main a {
	color: transparent;
	background: linear-gradient(to top, #00DD00, #fefad8 80%, #fefad8);
	background-clip: text;
	-webkit-background-clip: text;
	border: 2px solid transparent;
	border-radius: 5px;
	padding: 1px;
}
#main a:hover {
	color: transparent;
	background: linear-gradient(to top, #ffea00, #fefad8 80%, #fefad8);
	background-clip: text;
	-webkit-background-clip: text;
	border-color: #ffea00;
}