/* services-slide */
.service-carousel .services-slide-wrapper { display: flex; align-items: center; gap: 60px; justify-content: center; }
.service-carousel .services-icon { width: 90px; height: auto; }
.service-carousel { background-color: var(--color-red); padding: 24px 0; }
.service-carousel .services-name { font-family: Plus Jakarta Sans; font-weight: 800; font-size: 40px; line-height: 52px; text-align: center; -webkit-text-fill-color: transparent; -webkit-text-stroke: 0.5px var(--color-white); }

@media (max-width:1600px) {
	.service-carousel .services-name { font-size: 30px; line-height: 40px; }
}

@media (max-width:1360px) {
	.service-carousel .services-slide-wrapper { gap: 30px; }
}

@media (max-width:992px) {
	.service-carousel .services-icon { width: 80px; }
}

@media (max-width:575px) {
	.service-carousel .services-slide-wrapper { gap: 15px; }
	.service-carousel .services-icon { width: 60px; }
	.service-carousel .services-name { font-size: 26px; line-height: 34px; }
	.service-carousel { padding: 16px 0; }
}
/* services-slide */