.snst-services {
	max-width: 1612px;
	margin: 0 auto 100px;
	text-align: center;
}

.snst-services .heading {
	font-size: var(--wp--preset--font-size--snst-large);
	font-weight: 600;
	margin-bottom: 70px;
	text-transform: capitalize;
	color: var(--wp--preset--color--snst-black-09);
	font-family: var(--wp--preset--font-family--snst-cormorant-garamond);
}

.snst-services .image {
	width: 40px;
	height: 40px;
	margin: 0 auto 65px;
	position: relative;
}

.snst-services .image img {
	position: relative;
	top: 10px;
	left: -10px;
}

.snst-services .service-list {
	display: flex;
	gap: 50px 50px;
	flex-wrap: wrap;
}

.snst-services .service-list:first-child {
	margin-top: 150px;
}

.snst-services .service-list .list-inner {
	width: calc(33.33% - 50px * 2/3);
	padding: 55px 30px 37px;
}

.snst-services .service-list .list-inner .title {
	text-transform: capitalize;
	margin-bottom: 26px;
	color: var(--wp--preset--color--snst-blue);
	font-weight: 400;
}

.snst-services .service-list .list-inner .content {
	font-weight: 300;
	line-height: 34px;
	color: var(--wp--preset--color--snst-black-05);
	position: relative;
}

.snst-services .service-list .list-inner > *:last-child {
	margin-bottom: 0;
}

.snst-services .service-list .list-inner:nth-child(odd) .image img {
	top: -10px;
	left: -10px;
}

.snst-services .service-list .list-inner:nth-child(odd) .image:before {
	content: "";
	position: absolute;
	display: block;
	width: 109px;
	height: 175px;
	background-color: var(--wp--preset--color--snst-silver-gray);
	clip-path: polygon(0% 115%, 88% 49%, 0% 0%);
	border-radius: 50%;
	transform: rotate(-118deg);
	top: -100px;
	left: -50px;
}

.snst-services .service-list .list-inner:nth-child(even) .image img {
	top: -5px;
	left: 5px;
}

.snst-services .service-list .list-inner:nth-child(even) .image:before {
	content: "";
	position: absolute;
	display: block;
	width: 109px;
	height: 175px;
	background-color: var(--wp--preset--color--snst-silver-gray);
	clip-path: polygon(0% 100%, 88% 49%, 0% 0%);
	border-radius: 50%;
	transform: rotate(58deg);
	top: -69px;
	left: -27px;
}

.snst-services .service-list .list-inner:hover {
	color: var(--wp--preset--color--snst-white);
	box-shadow: 0px 5px 180px 20px rgba(0, 0, 0, 0.08);	
	transition: all 0.5s ease;
}

.snst-services .service-list .list-inner:hover .image::before { 
	display: none;
}	

.snst-services h2 span[data-rich-text-placeholder]:after {
	color: var(--wp--preset--color--snst-black-09);
	opacity: 1;
}

/* Responsive Style */
@media screen and (max-width: 1600px) { 
	.snst-services {
		max-width: calc(100% - 100px);
	}

	.snst-services .service-list {
		gap: 20px;
	}

	.snst-services .service-list .list-inner {
		width: calc(33.33% - 20px * 2/3);
		padding: 55px 20px 37px;
	}
}

@media screen and (max-width: 951px) { 
	.snst-services {
		margin: 0 auto 70px;
		max-width: calc(100% - 60px);
	}

	.snst-services .heading {
		margin-bottom: 50px;
	}

	.snst-services .service-list:first-child {
		margin-top: 100px;
	}

	.snst-services .service-list .list-inner .title {
		font-size: 30px;
		line-height: 38px;
	}

	.snst-services .service-list .list-inner {
		width: calc(50% - 20px * 1/2);
	}

	.snst-services .image {
		margin: 0 auto 40px;
	}
}

@media screen and (max-width: 737px) { 
	.snst-services .service-list .list-inner {
		width: 100%;
	}
}

@media screen and (max-width: 569px) { 
	.snst-services {
		max-width: calc(100% - 40px);
	}

	.snst-services .service-list .list-inner {
		padding: 55px 20px 37px;
	}
}