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


/*_________GENERAL CSS CLASSES___________*/
.display-flex-space-around {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.display-flex-space-between {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

a.button-border {
	border-radius: 0px;
	border: 3px solid #275d38;
    font-weight: 800;
    font-size: 18px;
	padding: 10px 25px;
	text-align: center;
}
a.button-border:hover, a.button-border:focus{
	text-decoration: none;
	color: white;
	background-color: #275d38;
}


/*About us btns, make them same width, no matter the content (swap for tablet)*/
.about-btns a {
	width: 100%;
}

/* Student testominial card design and slider */
.testimonial-card {
	margin-left: 5px;
	margin-right: 5px;
}
.slick-slide.slick-active:not(.slick-current) {
	opacity: 1;
}
.slick-slide.slick-active:not(.slick-center):not(.slick-current):hover {
	opacity: 1;
}
ul.slick-dots {
	bottom: -40px;
}
.slick-slide div.text-center > img {
    display: inline-block;
}
.testimonial-card .card-content-container-2 img {
	width: 120px;
	border-radius: 50%;
	margin-top: -120px;
	background-color: white;
	padding: 5px;
}
.testimonial-card.card-multicontent .card-content-title {
	margin-top: 0;
}
.testimonial-card .card-content-container-2 .slider-name {
	font-size: 1.5rem;
	font-weight: 600;
}
.testimonial-card .card-content-container-2 .card-content-header h3 {
	font-size: 20px;
}
.testimonial-card.card-multicontent .card-content-container-2 {
	padding: 17px;
}


.slick-track > li.slick-slide {
	height: 440px;
}
.testimonial-card .card-content-container-1 {
	height: 53%;
}
.testimonial-card .card-content-container-2 {
	height: 47%;
}
/* To avoid text (h3) cutting off in green section, adjust ratio just in tablet screen size:
Below 768:				container-1: 55%, container-2: 45%	
(min-width: 768px):		container-1: 45%, container-2: 55%  
(min-width: 992px):		container-1: 50%, container-2: 50%
(min-width: 1200px): 	container-1: 55%, container-2: 45%  
*/
/*

*/

/*Departments icon list, taken from cet*/
.outer-container {
	display: flex;
	align-items: center;
}
.inner-container {
	display: flex;
	align-items: center;
	gap: 20px;
}
.box-size-20 {
	box-sizing: border-box;
	padding: 20px;
}

/*Button row of staff and student btns */
.btn-row-bg {
	background-color: #efefef;
}
.btn-row {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.btn-row a {
	width: 270px;
}


/* Degree Background design img*/
.degree-bg {
	background-image: url("https://www.uvu.edu/chss/images/chss_site/degree_design_bg.png");
	background-size: cover;
}

/*Helpful resources and socials bottom*/

.helpful-btns {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}
.helpful-btns a{
	width: 260px;
}









/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.slick-track > li.slick-slide {
		height: 400px;
	}
	.testimonial-card .card-content-container-1 {
		height: 45%;
	}
	.testimonial-card .card-content-container-2 {
		height: 55%;
	}

	.advisor-info { /*wraps only on phone when squished*/
		flex-wrap: nowrap;
	}

	.about-btns a {
		width: 48%;
	}
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.slick-track > li.slick-slide {
		height: 435px;
	}
	.testimonial-card .card-content-container-1 {
		height: 50%;
	}
	.testimonial-card .card-content-container-2 {
		height: 50%;
	}
	.about-btns a {
		width: 100%;
	}
	.btn-row {
		justify-content: space-around;
	}
	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
		
	.slick-track > li.slick-slide {
		height: 450px;
	}
	.testimonial-card .card-content-container-1 {
		height: 52%;
	}
	.testimonial-card .card-content-container-2 {
		height: 48%;
	}
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/