/* 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 ========================== */
/*accordion css override*/
.accordion:not(.accordion-unstyled) {
	padding: 8px !important;
	background-color: #fff;
	border-bottom: 0;
	border-radius: 0;
}

.accordion:not(.accordion-unstyled):after {
	color: #fff;
    font-size: 100%;
    background-color: #285d39;
}
.open.accordion:not(.accordion-unstyled):after {
	content: "\f146";
}

.accordion-content {
	background-color: #fff;
	border: 0;
	margin-top: 0 !important;
	padding: 15px 10px !important;
}

/*accordion grid override*/
.accordion-grid { 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.accordion-grid img {
    max-height: 300px;
}
.accordion-grid figcaption {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.accordion-grid figure.open::after {
    border-color: transparent transparent #f9f9f9 !important;
}
.accordion-grid figcaption h3 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-align: center;
}
.accordion-grid figcaption p {
    position: absolute;
	left: 10px;
    bottom: 0;
}
.accordion-grid .accordion-content {
	background-color: #f9f9f9 !important;
}

/*content cards -- on planning pages*/
.card-content.card-content-shadow {
	min-height: 200px;
	background-color: #275d38;
	color: #fff;
	transition: all 500ms;
}
.card-content.card-grey {
	background-color: #e8e8e8;
	color: #000;
}
.card-content.card-white {
	background-color: #fff;
	color: #000;
}
.card-content.card-content-shadow .card-content-title {
	padding-bottom: 5px;
	border-bottom: 2px solid #fff;
	color: #fff;
	text-align: left;
	font-family: 'Lato', sans-serif;
}
.card-content.card-grey .card-content-title {
	color: #275d38;
	font-size: 20px;
	border-bottom: 2px solid #275d38;
}
.card-content-title a {
	font-size: 22px;
	color: #fff;
	font-family: 'Lato', sans-serif;
}
.card-content-content {
	padding-top: 10px;
}
.card-content-hover {
	border: 3px solid #275d38;
}
.card-content-hover:hover, .card-content-hover:active {
	background-color: #00843d !important;
	border: 3px solid #fff;
}

/*picture card -- on planning pages*/
.card-title-img {
  position: relative;
  color: white;
  text-align: center;
	
}

.card-title-img-layer {
  overflow: hidden;
  height: 70%;
}
.card-title-centered {
  position: absolute;
  display: inline-block;
  color: white;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -75%);
}
.card-link {
    display:inline-block;
    width:100%;
    height:100%;
	background-color: rgba(0, 0, 0, 0.5);
}

/*picture card on homepage*/
.home-card .card-title-img-layer {
    height: 100% !important;
}

/*directory card override on About Us page*/
.card-staff-3 .card-staff-name {
    font-size: 24px !important;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.card-picture-7 .card-picture-title {
		font-size: 24px;
	}
	
}

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