/* cus bg gradient background color style */
.cus-bg{
    background: linear-gradient(-45deg, #4b64dd, #5c919d, #8c8ecf, #914c4c);
	background-size: 400% 400%;
	animation: gradient 5s ease infinite;
	height: auto;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.cus-bg {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cus-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.8) 0%,
		rgba(255, 255, 255, 0) 80%
	);
	transform: scale(0);
	animation: expand 1s ease-out forwards, fadeOut 1s ease-out forwards 0.5s;
}

@keyframes expand {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(2);
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}