#site-services {

}

.site-services-label {
	font-weight: 600;
	margin-bottom: 50px;
	color: var(--site-primary) !important;
}

.site-services-banner {
	display: block;
    border-radius: 50px !important;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.site-services-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
}

.site-services-title {
	margin-top: 30px;
}

#site-services h3 {
	color: #fff;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.25s;
}

#site-services a {
	text-decoration: none;
	color: var(--site-text) !important;
	display: flex;
	align-items: center;
}

.site-service-item span {
    font-size: 20px;
    color: #fff;
    transition: all 0.25s;
    width: 50px;
    height: 50px;
    background: #f59f14;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
}

#site-services a:hover h3 {
	text-decoration: underline;
	color: var(--site-primary);
}

#site-services a:hover span {
	transform: translateX(7px);
}

.site-service-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 50px;
}

.site-service-item-desc {
	color: var(--site-text);
}