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

/* apply section at top of every page */
.apply-now {
	
	padding: 10px 40px;
	background-color: var(--color-uvu-primary);
	z-index: 1;
	text-align: center;
}
	.apply-now div {
		max-width: 1200px;
		text-align: right;
		width: 100%;
		margin:auto;
	}
	.apply-now a {
		display: inline-block;
		padding: 15px 45px;
		background-color: #fff;
		font-size: 1.25em;
		font-weight: 900;		
	}

/* events on homepage */
.event-list {
	list-style: none;
	padding-left: 0;
}
.event-list li {
	padding: 10px 10px 10px 70px;
    background-color: #fff;
    box-shadow: 0px 0px 10px #00000029;
    border-radius: 8px;
}

.event-list li:before {
	content: '\f073' !important;
    	font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
		font-size: 2.25em;
	font-weight: 900;
		position: absolute;
		color: var(--color-uvu-primary);
		left: 20px;
	z-index: 1;
}

/* social media card at bottom */

.event-card a {
	border-bottom: none;
}
/* follow us card - similar to event cards with a few changes */

.follow-us {
	border-radius: 8px !important;
}
.event-card.follow-us {
	height: auto;
}
.follow-us-details {
	padding: 20px;
	text-align: center;
	font-weight: bold;
	color: var(--color-uvu-green);
	font-size: 1.125em;
	display: grid;
	align-items: center;
}
.follow-us-image {
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	justify-content: flex-end;
}


/* Event Cards */

.event-card {
	box-shadow: 0 0 6px #00000029;
	border-radius: 8px;
	background-color: #F4F4F4;
	font-family: Rajdhani, sans-serif;
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-right: 0 !important;
	height: 100%;
		border: 1px solid #ccc;
	
}
	.event-details {
		color: var(--color-uvu-primary);
		padding: 0 20px !important;
		box-sizing: border-box;
		margin: 0;
		display: flex;
		align-items: flex-start;
		height: fit-content;
	}


		
/* items next to the contact card */
.next-to-contact {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* high school schedule table */
/* formatting schedule tables */
.schedule {
	width: 100%;	
}
	.schedule, .schedule th, .schedule td {
		border: 1px solid #ddd;
		border-collapse: collapse;
	}
	.schedule th {
		color: var(--color-uvu-primary);
		vertical-align: bottom !important;
		background-color: #eee;
	}
		.schedule th:first-child {
			background-color: var(--color-uvu-primary);
			color: #fff;
		}
		.schedule tr td:first-child {
			color: var(--color-uvu-primary);
			font-weight: 700;
		}
	.schedule td {
		width: 20%;
		vertical-align: middle !important;
	}

.school-list {
	display: flex;
	justify-content: flex-end;
}

.partners .card-staff-5 {
	height: 250px !important;
}

/* event cards - here it is used on the gear up day page */
.event-item {
	margin-bottom: 30px;
}
.event-item[data-component-event-style="1"] .event-title {
       color: var(--color-uvu-primary);
    font-weight: 900;
	font-size: 1.5em;
    font-family: 'Rajdhani', sans-serif;
    margin-top: 0;
    margin-bottom: 10px;
	text-transform: none;
}
.event-poster .poster {
    display: block;
    border: none;
	width: 229px;
    height: 229px;
    margin: auto;
    object-fit: cover;
}
.event-item[data-component-event-style="1"] .event-frame .event-date {
	display: none;
}
.event-item[data-component-event-style="1"] .event-item-container {
	padding: 30px;
	background-color: #ECF0ED;
}
.event-frame {
	height: 229px;
	align-items: normal;
}
.event-description {
	max-width: 80ch;
	line-height: 1.5em;
}
.event-item[data-component-event-style="1"] .event-details p, .event-item[data-component-event-style="1"] .event-details ul, .event-item[data-component-event-style="1"] .event-details a {
	color: #292929;
	font-size: 1.125em;
}

.slides figcaption .title {
	display: none;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	
	.event-item .event-item-container {
		align-items: normal !important;
	}
	.event-item[data-component-event-style="1"] .event-details, .event-item[data-component-event-style="3"] .event-details {
		padding-top: 0;
	}
 	.jumbo header {
    padding: 120px 40px;
} 
	
	




}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	
	
	.event-item[data-component-event-style="1"] .event-frame {
    border-right: none;
}
	






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