.X-social-icon svg:hover,
.tiktok-social-icon svg:hover {
	fill: #cf000f;
}

.X-social-icon svg:hover,
.tiktok-social-icon svg:hover {
	fill: #cf000f;
}

.X-social-icon svg:hover path,
.tiktok-social-icon svg:hover {
	fill: #cf000f;
}

.X-social-icon svg:hover plygon,
.tiktok-social-icon svg:hover {
	fill: #cf000f;
}

.X-social-icon svg:hover circle,
.tiktok-social-icon svg:hover {
	fill: #cf000f;
}
.marquee-content-copy {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
	display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
    height: 100%;
}
.marquee-container {
	width: 100%;
	overflow: hidden;
	padding: 50px 0;
	position: relative;
}

.marquee {
	display: flex;
	-webkit-animation: ptf_marquee 20s linear infinite;
    animation: ptf_marquee 20s linear infinite;
	white-space: nowrap;
	position: relative;
	    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.marquee-content {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 0 20px;
}
.marquee-item {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding: 0 2rem;
}
.marquee-text {
	color: #fff;
	transition: color 0.3s;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	position: relative;
	margin-bottom: 1.5625rem;
}

.marque-work-title {
	font-size: 1.8rem;
	line-height: 1.35;
	color: #fff;
	font-weight: 600;
}

.marquee-item:hover .marquee-text {
	color: #cf000f;
}


@keyframes ptf_marquee {
	0% {
		    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0);
	}

	100% {
		    -webkit-transform: translateX(-100%) translateZ(0);
    transform: translateX(-100%) translateZ(0);
	}
}

/* Pause on hover */
.marquee-container:hover .marquee {
	animation-play-state: paused;
}

/* Circle reveal on hover */
.hover-circle {
	position: fixed;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	overflow: hidden;
	pointer-events: none;
	z-index: 10;
	opacity: 0;
	/* transform: translate(-50%, -50%) scale(0); */
	/* transition: all 1s cubic-bezier(1, 1,1, 1); */
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hover-circle.active {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.hover-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(200, 255, 0, 0.3), transparent);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.hover-overlay-text {
	text-align: center;
	color: #c8ff00;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hover-overlay-text h3 {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 10px;
}

.hover-overlay-text p {
	font-size: 24px;
	font-weight: 700;
}

.arrow-button {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

/*         .arrow-button svg {
            width: 28px;
            height: 28px;
            transform: rotate(-45deg);
        } */

/* Responsive */
