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

																						/* MAIN COLOR: solid-blue-d1  -- #00688c   2NDARY COLOR: UVU GREEN:   #275d38     */
																		/* MAIN COLOR: card header bg, links in body     2NDARY COLOR: header (outside of cards), header accent border, btn bg,  */
/* normal link, in-text-link, and button styling  */
a {
	color: #00688c; 
}
p > a {
 	color: #00688c; 
}
a:hover {
	color: #00688c;
	font-weight: 700;
}
.button-solid {
	font-weight: 600;
}
.button-solid:hover, .button-solid:focus {
	color: #275d38;
	text-decoration: none;
}
.border-uvu {
	border: 3px solid #275d38;
}


/*  testimonial and faculty slider styling */

/* To fix 1/2 cards from fading out as if not active */
.faculty-video.slick-slide.slick-active:not(.slick-current) {
	opacity: 1;
}
.testimonial-video.slick-slide.slick-active:not(.slick-current) {
	opacity: 1;
}
/* To fix dots overlapping with video controls */
ul.slick-items .faculty-video {
	margin-bottom: 50px;
	padding-right: 10px;
}

/* header styling and general card header styling*/
h1 {
	text-align: center;
}
h1, h2, h3, h4 {
	font-weight: 600;
}
div.card-content-header {
	background-color: #00688c;
	border-bottom: 3px solid #275d38;
}


/* HP */

.events-button {
	width: 100%;
	margin-top: 15px;
	font-size: 20px;
}
.additional-resources {
	margin-top: 10px;
	font-size: 18px;
}


/*HP testimonial multicard styling*/
.testimonial .card-content-header.card-content-header-bg {
	margin: -20px -20px 0px;
}
.testimonial div.card-content-container-1 {
	font-size: 18px;
	padding: 10px 20px;
}
.testimonial div.card-content-container-2 {
	padding: 10px 20px 0 20px;
}
.testimonial div.card-content-container-2 blockquote {
 	margin: 0;
	padding-right: 0;
}
.testimonial div.card-content-container-2 blockquote p{
 	font-size: 16px;
}


/* FAQs styling 					(h3 for chatbot to read but style not like headers) */
summary>h3 {
	font-family: 'Lato', sans-serif;
	color: #292929;
	font-weight: 500;
}


/* PROGRAMS */

/* Program cards */
.programs .card-content.card-content-border {
	border-width: 2px;
}
.emphasis {
	padding: 15px;
}
.emphasis .card-content-header {
	background-color: #275d38;
}
.emphasis .card-content-header h2{
	color: white;
	font-size: 24px;
}


/* STUDENT RESOURCES */

/*Student res cards*/
 .card-picture-9 img {
	border-bottom: 5px solid #00688c;
} 
.inverted-card {
	grid-template-areas:
        "title img"
        "content img"
        "button img";
}
.inverted-card img {
	border-right: none;
}
.card-picture-9 .card-picture-title:after {
	background: #a7a8aa;
}
.card-picture-2 .card-picture-title { 							/*????????where*/
	background-color: #00688c;
}
.card-picture-9 .card-picture-title { 						
	margin-bottom: 20px;
}

.card-picture-9 .card-picture-content {
	margin-bottom: 10px;
}

/* DEAF ALUMNI STORIES */

/* alumni story cards */
.story-card > .card-picture-title {
	background-color: #00688c;
    border-bottom: 3px solid #275D38;
}




/* EVENTS */

.event-item[data-component-event-style="1"] .event-frame {	/*Make event-listing card border color blue*/
	border-color: #00688c;
}


/* FACULTY PAGE  */

/* INTERNSHIPS PAGE  */
.disclaimer {
	background-color: #e5eff5;
}
.disclaimer h3 {
	margin-top: 0;
}

.card-picture-7 .card-picture-title:after {
	content: "\f054";
}



/* Internships pages */
.ol-circle-big>li:before {
	background-color: #00688c;
}



@media only screen and (max-width: 768px) { /*mobile only styles*/
/* 	make internship application process more readable on mobile, less whitespace */
	ol.ii-application, ol.ds-application {
		padding-left: 15px;
	}
	ol.ii-application li, ol.ds-application li{		/*li step-headers*/
		padding-left: 45px;
	}
	ol.ii-application div.content, ol.ds-application div.content{	/*li step-content*/
		padding: 0 0 0 45px;
	}
	ol.ii-application div.content ul.arrow, ol.ds-application div.content ul.arrow{	/*sub-li Tips*/
		padding-left: 0;
	}
	
	.emphasis { /*Less unneeded padding to improve linelength*/
		padding: 0 0 15px 0 ;
	}
	.accordion h3 {
		font-size: 16px;
	}   
/* 	More space for the plo boxes on mobile by reducing padding */
	.plos .accordion-content ul {
		padding: 0;
	}
}

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

	.programs .card-content-content p {		/*when programs take up whole screen, add text indentation/padding*/
		padding: 0 30px 0 30px;
	}
	.card-picture-7 .card-picture-img {		/*the two internship option btn/cards/links take up less of page*/
		height: 200px;
	}
	.accordion h3 {
		font-size: 18px;
	} 
}

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