HEX
Server: Apache
System: Linux server-634962.emtiyz.com 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: codo66ho (1003)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/codo66ho/.trash/assets/scss/home-4/_feature.scss
@keyframes icon-bounce {
	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}
.rx-feature-section {
	top: -90px;
	z-index: 2;
	overflow: visible;
}
.rx-feature-icon-text {
	padding: 50px 40px;
	background-color: #190200;
	transition: .3s all ease-in-out;
	.rx-feature-icon {
		line-height: 1;
		padding-bottom: 30px;
		i {
			font-size: 50px;
			color: $base-color;
		}
	}
	.rx-feature-text {
		h3 {
			color: #000;
			color: #fff;
			font-size: 22px;
			font-weight: 700;
			padding-bottom: 15px;
		}
		p {
			color: #bebebe;
			line-height: 1.733;
			transition: .3s all ease-in-out;
		}
	}
	&:hover {
		background-color: #fafafa;
		.rx-feature-text {
			h3 {
				color: #000;
			}
			p {
				color: #555555;
			}
		}
		.rx-feature-icon  {
			animation: icon-bounce .8s ease-out infinite;
		}
	}
}