/* 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 ========================== */
h2, h3, h4 {
	text-transform: uppercase;
}
.bg-green-xlight {
	background-color: #ECF0ED;
}

/************LINKS************/
.button-shadow {
	color: #275d38;
	display: flex;
    justify-content: space-between;
	border-radius: 8px;
	font-weight: bold;
	text-transform: capitalize;
	transition: all 300ms;
	box-shadow: none;
}
.button-shadow:after {
    content: "\f061";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    color: #275d38;
}
.button-shadow:hover, .button-shadow:focus {
	border: 2px solid #fff;
	text-decoration: none;
}
.button-shadow:hover:after,.button-shadow:focus:after {
	color: #fff;
}
.button-solid {
    font-weight: bold;
    text-transform: capitalize;
	display: flex;
    justify-content: space-between;
	border-radius: 8px;
	transition: all 300ms;
}

/************HEADER STYLING************/
.individual-back-button h1 {
	color: #fff;
	padding: 20px 40px;
	margin: 0px 0 10px 40px;
	font-size: 2em;
	text-transform: none;
	font-weight: 700;
	background-color: var(--color-uvu-secondary);
}

/************STAFF CARDS CSS************/
.card-staff-5 .card-staff-portrait {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
}
.card-staff-5 .card-staff-details .card-staff-name {
	font-size: 1.6em;
}
.card-staff-5 .card-staff-details .card-staff-title {
	font-size: 1.3em;
}

/*********************COMMITTEE CARDS*********************/
.committee-card {
	display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
	font-family: "Lato", sans-serif;
}

.committee-card-content {
	background-color: #fff;
    width: 100%;
    border-radius: 10px;
    box-shadow: #c4c4c4 3px 0px 6px;
    padding: 20px 20px 20px 40px;
	margin-left: -20px;
}

.committee-card-content .name {
	font-weight: bold;
}

.committee-card-content .title {
	font-size: 14px;
}

.committee-card .committee-image {
	z-index: 5;
	width: 100px;
}

.committee-card img {
	border-radius: 50%;
	width: 75px;
	height: 75px;
}




/************PHOTO CARDS************/
.card-picture-custom {
	border-radius: 8px;
	box-shadow: 0px 0px 6px rgb(0 0 0 / 16%);
	overflow: hidden;
}

.card-picture-custom .card-picture-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.4px;
    line-height: 29px;
    color: #275D38;
    padding: 30px 20px;
    margin: auto 0px 0px;
	position: relative;
	transition: all 100ms;
}
.card-picture-custom .card-picture-title::before {
    content: "\f0a9";
    display: inline-block;
    color: #275D38;
    font-size: 35px;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    top: -15px;
    left: 50%;
    margin-left: -17px;
    z-index: 2;
}
.card-picture-custom .card-picture-title::after {
    content: "";
    display: inline-block;
    background-color: #fff;
    width: 50px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -25px;
    height: 50px;
    z-index: 1;
}
.card-picture-custom .card-picture-img {
    order: -1;
    height: 100%;
}

.card-picture-custom .card-picture-content {
    display: none;
}

.card-picture-custom .card-picture-button {
    overflow: hidden;
    height: 0;
}

.card-picture-custom:hover .card-picture-title, .card-picture-custom:hover .card-picture-title::before, .card-picture-custom:hover .card-picture-title::after {
	background-color: #275D38;
	color: #fff;
}

.card-hover-grow .card-hover-front {
	justify-content: center;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/************HEADER STYLING************/
	.individual-back-button h1 {
		padding: 20px 80px;
	}
	
}

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