/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

section.department {
	background-color: #275d38;
	padding: 5px 0 15px;
}
section.department h1 {
	color: #fff;
}

.bg-image.services {
	background-color: #efefef;
	background-image: url('/infra/nts/images/dotsnlines_2000px.png');
}
.services-list {
/* 	justify-content: space-between; */
	flex-wrap: wrap;
}
.services-list a {
	width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border-bottom: solid 7px #275d38;
	margin: 0 .75% 20px;
    text-align: center;
    color: #275d38;
    padding: 10px 20px 20px;
    font-family: Raleway;
    font-weight: 500;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.6);
}

.more-info {
	background-color: #d0d0ce;
}

/* Table Styles */
table {
	border-collapse: collapse;
}
table thead {
	font-weight: bold;
	border-bottom: 2px solid #275d38;
}
table tr:nth-of-type(even) {
	background: #ccc;
}
table td {
	padding: 3px 5px;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {

.services-list a {
    width: 23.5%;
}
	
	
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {


	
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {

	
	
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
