/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 09:13:58 */
.service-switcher{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
}

.service-btn{
padding:18px 36px;
border-radius:50px;
border:1px solid #9D9D9D;
cursor:pointer;
transition:all .3s ease;
font-size:1.1rem;
	background: transparent;
	font-weight: 500;
	color: #161616;
}

.service-btn:hover{
border-color:#7EC11F;
}

.service-btn.active{
background:#7EC11F;
color:#fff;
border-color:#7EC11F;
}

@media screen and (max-width: 767px) {
  .service-switcher{
gap:10px;
	}
	.service-btn{
padding:12px 24px;
font-size:1rem;
	}
}

/* rows */

.service-content{
display:none;
}

.service-content.active{
display:flex;
}