/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */


.main-content{
	padding-top: 150px;
}

#services-1188 {
	padding: var(--sectionPadding);
}
#services-1188 .cs-container {
	max-width: 80rem;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* 48px - 64px */
	gap: clamp(3rem, 6vw, 4rem);
}
#services-1188 .cs-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	/* centers content horizontally, set to flex-start to left align */
	align-items: center;
	/* set text align to left if content needs to be left aligned */
	text-align: center;
	color: black;
    line-height: 27px;
    font-size: 12pt;
    padding-left: 15px;
    padding-right: 15px;

}

#services-1188 .cs-content .cs-title{
	font-size: 20pt;
    font-weight: 600;
    color: #515151;
	text-transform: uppercase;
}

#services-1188 .cs-card-group {
	/* changes to 1280px at desktop */
	max-width: 56.25rem;
	width: 100%;
	margin: 0;
	padding: 0;
	display: grid;
	justify-content: center;
	gap: 1rem;
}
#services-1188 .cs-item {
	list-style: none;
	max-width: 23rem;
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	padding: 1rem;
	border: 1px solid #dbdbdb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
    background-color: #f3efef;
}
#services-1188 .cs-picture {
	width: 80px;
	height: 80px;
	margin-bottom: 1.25rem;
	box-sizing: border-box;
	/* prevents border from affecting height and width */
	background-color: #b2b0c8;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	/* prevents flexbox from squishing it */
	flex: none;
}
#services-1188 .cs-icon {
	width: 70px;
	height: auto;
	display: block;
}
#services-1188 .cs-h3 {
	font-size: 1.25rem;
	line-height: 1.5em;
	margin: 0;
	margin-bottom: 0.5rem;
	color: var(--headerColor);
	text-align: center;
	text-transform: uppercase;
    color: black;
    font-weight: 500;
}
#services-1188 .cs-item-text {
	/* 14px - 16px */
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	line-height: 1.5em;
	margin: 0;
	color: var(--bodyTextColor);
	text-align: center;
}
#services-1188 .cs-button-solid {
	font-size: 1rem;
	/* 46px - 56px */
	line-height: clamp(2.875rem, 5.5vw, 3.5rem);
	font-weight: 700;
	min-width: 9.375rem;
	margin: 0;
	/* prevents padding from adding to the width */
	box-sizing: border-box;
	padding: 0 1.5rem;
	color: #fff;
	background-color: var(--primary);
	text-decoration: none;
	display: inline-block;
	position: relative;
	z-index: 1;
	text-align: center;
}
#services-1188 .cs-button-solid:before {
	content: "";
	width: 0%;
	height: 100%;
	background: #000;
	opacity: 1;
	border-radius: 0.25rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: width 0.3s;
}
#services-1188 .cs-button-solid:hover:before {
	width: 100%;
}



/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1188 .cs-card-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    #services-1188 .cs-item {
        margin: 0;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #services-1188 .cs-card-group {
        max-width: 80rem;
    }
    #services-1188 .cs-item {
        max-width: none;
        padding: 2rem 1.5rem;
    }
		
	.main-content{
		padding-top: 200px;
	}

}

                                