.cs_cats {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	justify-content: center;
}
.cs_cats li {
	border-bottom: 1px solid #9D58FE;
	flex-grow: 1;
}
.cs_cats a {
	padding: 20px 50px;
	border-radius: 10px 10px 0 0;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	color: #26005C;
	font-family: 'Exo', sans-serif;
	font-style: normal;
	line-height: 150%;
	letter-spacing: 1.25px;
	border: 1px solid transparent;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	align-items: center;
	justify-content: center;
}
.cs_cats a.active, .cs_cats a:not(.active):hover {
	color: #ffffff;
	border: 1px solid #9D58FE;
	background: #9D58FE;
	transition: all .3s ease-in-out;
}
.cs_intro p {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
}
.service_list {
	display: flex;
	flex-wrap: wrap;
}
.service_list a {
	background: #EFE3FF;
	border-radius: 10px;
	box-sizing: border-box;
	text-align: center;
	width: calc(33% - 20px);
	transition: .125s;
	overflow: hidden;
	display: flex;
	justify-content: center;
	padding: 0;
	max-width: 0;
	max-height: 0;
	margin: 0;
}
.service_list a.active {
	max-height: 50000px;
	max-width: calc(33% - 30px);
	padding: 30px 45px;
	margin: 0 15px 30px;
}
.service_list a > div {
	display: flex;
	flex-direction: column;
	align-content: center;
}

.service_list a * {
	transition:  .3s;
}
.service_list a .image-wrapper {
	height: 80px;
	width: 80px;
	position: relative;
	margin: 0 auto 30px;
}
.service_list a .image-wrapper * {
	position: absolute;
	width: 100%;
	height: 100%;
	background: no-repeat center / contain;
	transition: .3s;
}
.service_list a .image-wrapper .reverse {
	opacity: 0;
}
.service_list a p {
	text-transform: capitalize;
	color: #9D58FE;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	text-align: center;
	font-size: 24px;
	font-family: 'Exo', sans-serif;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: 0.2px;
}
.service_list a:hover {
	text-decoration: none;
	background: linear-gradient(90deg, #032056fc 0%, #0f01e5 100%);
}
.service_list a:hover p {
	color: #fff;
}

.service_list a:hover .image {
	filter: brightness(0) invert(1);
}
.service_list a.reverse:hover .image {
	filter: none;
}
.service_list a.reverse:hover .image:nth-child(1) {
	opacity: 0;
}

.service_list a.reverse:hover .image:nth-child(2) {
	opacity: 1;
}

@media (max-width: 1024px) {
	.service_list a.active {
		width: calc(50% - 30px);
		max-width: calc(50% - 30px);
	}
}
@media (max-width: 640px) {
	.service_list a.active {
		width: 100%;
		max-width: 100%;
		margin: 0 0 30px 0;
	}
	.service_list a .image-wrapper {
		width: 50px;
		height: 50px;
		background-size: 50px;
	}
	.service_list a p {
		font-size: 16px;
	}
	.cs_cats li {
		width: 50%;
	}
}
