/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 18 2025 | 09:18:09 */
#cta-glitch {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
    
    .button {
		background-color: black;
		padding: 12px 24px;
		width: 240px;
		padding-bottom: 8px;
		filter: drop-shadow(6px -6px 0 cyan) drop-shadow(-6px 6px 0 magenta) drop-shadow(6px 6px 0 yellow);
		transform: skew(-10deg);
		display: flex;
		justify-content: center;

		  * {
			transform: skew(10deg);
			color: white;
			font-weight: 800;
		  }

		  &:hover{
			transform: scale(0.93) skewX(-10deg) rotate(1deg);
		  }
	}
}
  
#cta-glitch-yellow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
	.button {
		background-color: yellow;
		width: 240px;
		padding: 12px 24px;
		padding-bottom: 8px;
		filter: 
			drop-shadow(6px -6px 0 cyan) 
			drop-shadow(-6px 6px 0 magenta);
		/* drop-shadow(0.7vh 0.7vh 0 yellow);*/
		transform: skew(-10deg);
		display: flex;
		justify-content: center;
      
		* {
			transform: skew(10deg);
			color: black;
			font-weight: 800;
		}

		&:hover{
			transform: scale(0.93) skewX(-10deg) rotate(1deg);
		}
   	}
}

@media only screen and (max-width: 768px) {
	#cta-glitch .button:hover {
		transform: none;
	}
}