a.ctagradient{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 450px;
	padding: clamp( 64px, 5.91vw, 95px );
	color: #fff !important;
	text-decoration: none;

	@media (max-width: 991px){
		min-height: 276px;
	}

	.bg{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.title{
		position: relative;
		z-index: 1;
		font-size: clamp( 38px, 3.24vw, 52px );
		font-weight: 700;
		line-height: 1.1538;
	}

	.fake-button{
		position: absolute;
		z-index: 2;
		bottom: 0;
		right: 0;
		padding: 20px 40px;
		background: var(--wp--preset--color--yellow);
		font-weight: 700;
		color: var(--wp--preset--color--white);
		transition: background-color .3s ease;

		@media (max-width: 991px){
			padding: 16px 30px;
			font-size: 16px;
		}
	}
	&:hover .fake-button{
		background-color: var(--wp--preset--color--darkblue);
	}
}