/* 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 ========================== */
/******PROGRAM FILTERS***********/
.filter-heading {
    font-size: 24px;
    font-weight: 700;
}
#filters h3 {
	color: #000;
    background-color: #fff;
    font-weight: bold;
    font-size: 22px;
    border-radius: 0;
    justify-content: start;
    letter-spacing: 0.5px;
}
.filter-group {
    list-style-type: none;
}
.filter-group label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

/******PROGRAM BOXES***********/
.grid ul {
	list-style-type: none;
	padding: 0;
    margin-inline: auto;
}
.grid ul li {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
    padding: 2rem;
    margin: 0 0 20px;
    width: 100%;
    border-radius: 8px;
}
.grid ul li h3 {
    font-weight: bold;
}
.grid ul li a {
    font-weight: bold;
    text-decoration: underline;
}


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

/*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*/