/**
 * Service CTA Widget Styles
 */
 .service-cta-widget .service-cta-link {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.5;
	transition: all 0.3s ease;
}

.service-cta-widget .service-cta-content {
	display: block;
	background-color: var(--color-brand-blue);
	padding: .75rem 2rem .75rem 1rem;
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0 100%);
	transition: all 0.3s ease;
}

.service-cta-widget .service-cta-title {
	color: #ffffff;
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	padding:0;
	transition: all 0.3s ease;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="32" viewBox="0 0 21 32" fill="none"><path d="M9.9561 0L21 16L9.95539 32H0L11.0432 16L0 0H9.9561Z" fill="white"/></svg>');
	background-repeat: no-repeat;
	background-position: -40px center;
	background-size: 21px 32px;
}

@media (max-width: 991px) {
	.service-cta-widget .service-cta-link {
		background-image: none!important;
		display: inline-block;
	}

	.service-cta-widget a.service-cta-link::after {
		content: '';
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: calc(100% + .25rem);
		width: 16px;
		height: 24px;
		background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="24" viewBox="0 0 16 24" fill="none"><path d="M7.5856 0L16 12L7.58506 24H0L8.41385 12L0 0H7.5856Z" fill="%23007FD4"/></svg>');
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
}

@media (min-width: 992px) {
	.service-cta-widget .service-cta-link {
		aspect-ratio: 1/1;
		overflow: hidden;
		flex: 1 1 calc(50% - 1.5rem);
	}

	.service-cta-widget .service-cta-content {
		padding: 3rem 1rem 1rem;
		background-color: var(--color-brand-blue);
		clip-path: polygon(0 0, 100% 28px, 100% 100%, 0 100%);
		overflow: hidden;
		position: relative;
	}


	.service-cta-widget a.service-cta-link:hover .service-cta-title {
		background-position: 0% center;
		padding-left: 32px;
	}

	.service-cta-widget a.service-cta-link:hover .grid-item-content{
		bottom: 0;
	}
}