/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/


/* Button download */
.btn-android {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	background-color: #F94A6E;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.btn-android::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(90deg, #F94A6E, #E04FF0, #F49D49, #FF1F2C, #FF6830, #F94A6E);
	background-size: 300% 100%;
	z-index: -1;
	filter: blur(5px);
	animation: gradientMove 5s linear infinite;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-android:hover::before {
	opacity: 1;
}

.btn-android:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(249, 74, 110, 0.7);
}

.android-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.android-icon-svg {
	fill: white;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 300% 50%;
	}
}

@keyframes neon-pulse-android {
	0% {
		box-shadow: 0 0 5px rgba(249, 74, 110, 0.7), 0 0 10px rgba(224, 79, 240, 0.7), 0 0 15px rgba(244, 157, 73, 0.7), 0 0 20px rgba(255, 31, 44, 0.7);
	}
	50% {
		box-shadow: 0 0 20px rgba(249, 74, 110, 0.7), 0 0 20px rgba(224, 79, 240, 0.7), 0 0 30px rgba(244, 157, 73, 0.7), 0 0 40px rgba(255, 31, 44, 0.7);
	}
	100% {
		box-shadow: 0 0 5px rgba(249, 74, 110, 0.7), 0 0 10px rgba(224, 79, 240, 0.7), 0 0 15px rgba(244, 157, 73, 0.7), 0 0 20px rgba(255, 31, 44, 0.7);
	}
}

.btn-android {
	animation: neon-pulse-android 1.5s infinite;
}


.btn-ios {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	background-color: #007AFF;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.btn-ios::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(90deg, #007AFF, #5AC8FA, #4CD964, #FF2D55, #5856D6, #007AFF);
	background-size: 300% 100%;
	z-index: -1;
	filter: blur(5px);
	animation: gradientMove 5s linear infinite;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-ios:hover::before {
	opacity: 1;
}

.btn-ios:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(0, 122, 255, 0.7);
}

.ios-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.ios-icon-svg {
	fill: white;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 300% 50%;
	}
}

@keyframes neon-pulse-ios {
	0% {
		box-shadow: 0 0 5px rgba(0, 122, 255, 0.7), 0 0 10px rgba(90, 200, 250, 0.7), 0 0 15px rgba(76, 217, 100, 0.7), 0 0 20px rgba(255, 45, 85, 0.7);
	}
	50% {
		box-shadow: 0 0 20px rgba(0, 122, 255, 0.7), 0 0 30px rgba(90, 200, 250, 0.7), 0 0 40px rgba(76, 217, 100, 0.7), 0 0 50px rgba(255, 45, 85, 0.7);
	}
	100% {
		box-shadow: 0 0 5px rgba(0, 122, 255, 0.7), 0 0 10px rgba(90, 200, 250, 0.7), 0 0 15px rgba(76, 217, 100, 0.7), 0 0 20px rgba(255, 45, 85, 0.7);
	}
}

.btn-ios {
	animation: neon-pulse-ios 1.5s infinite;
}

.btn-watch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	background-color: #F49D49;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.btn-watch::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(90deg, #F94A6E, #E04FF0, #F49D49, #FF1F2C, #FF6830, #F94A6E);
	background-size: 300% 100%;
	z-index: -1;
	filter: blur(5px);
	animation: gradientMove 5s linear infinite;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-watch:hover::before {
	opacity: 1;
}

.btn-watch:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(244, 157, 73, 0.7);
}

.icon-watch {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	fill: white;
}

@keyframes gradientMove {
	0% { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}

@keyframes neonPulse {
	0%, 100% {
		box-shadow: 0 0 5px rgba(249, 74, 110, 0.7), 0 0 10px rgba(224, 79, 240, 0.7), 0 0 15px rgba(244, 157, 73, 0.7), 0 0 20px rgba(255, 31, 44, 0.7);
	}
	50% {
		box-shadow: 0 0 10px rgba(249, 74, 110, 0.7), 0 0 20px rgba(224, 79, 240, 0.7), 0 0 30px rgba(244, 157, 73, 0.7), 0 0 40px rgba(255, 31, 44, 0.7);
	}
}

.btn-watch {
	animation: neonPulse 1.5s infinite;
}
.btn-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.btn {
	flex: 0 0 calc(33.333% - 40px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 20px;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	text-align: center;
	min-width: 200px;
}

@media screen and (max-width: 549px) {
	.btn {
		flex: unset;
		width: 100%;
		font-size: 19px;
	}	
}


@media screen and (min-width: 550px) and (max-width: 849px) {
	.btn {
		font-size: 12px;
	}	
}